P
Pablo Ricco
Hi!
I have this problem...
In Visual Basic I am work with ADODB and the next code work perfectly...
Dim cmd as New ADODB.Command
cmd.Properties(15).Value = 2
....
But in .NET..
OleDbCommand cmd = new OleDbCommand();
cmd.Parameters.add("15",2);
....
this code throws an error:
"An unhandled exception of type 'System.InvalidOperationException' occurred
in system.data.dll
Additional information: The ICommandWithParameters interface is not
supported by the 'GXPublic.GXPublic.3' provider. Command parameters are
unsupported with the current provider."
thanks...
pablo
I have this problem...
In Visual Basic I am work with ADODB and the next code work perfectly...
Dim cmd as New ADODB.Command
cmd.Properties(15).Value = 2
....
But in .NET..
OleDbCommand cmd = new OleDbCommand();
cmd.Parameters.add("15",2);
....
this code throws an error:
"An unhandled exception of type 'System.InvalidOperationException' occurred
in system.data.dll
Additional information: The ICommandWithParameters interface is not
supported by the 'GXPublic.GXPublic.3' provider. Command parameters are
unsupported with the current provider."
thanks...
pablo