Quote:
Now, I get the following error:
A serious error occurred.
ODBC Engine is unable to supply native error code and error
description. |
Okay, I fixed this error by not testing this procedure from another
procedure. However, there is still a problem when I uncomment the
CityName argument.
When I try calling the stored procedure from Pervasive's .NET data
provider, I get the following exception:
"Input string was not in a correct format"
I'm passing a simple string, "Test". However, when I look at the
parameter for the command object it's properties are as follows:
DbType: Int32
Precision: 10
PsSqlType: Integer
Scale: 0
Size: 4
I used CommandBuilder to generate the command and parameters. I was
expecting to see VarChar as the DbType? But then again, the other
parameters used Decimal as the DbType - so I don't know what to think
anymore