Hello: > Like I said in my original post, using CommandType.StoredProcedure > returns -1. Executing a stored procedure using the same syntax via > FlameRobin also displays "0 row(s) affected." Is it a problem with the > database, not the provider?
From the .NET Docs: "For UPDATE, INSERT, and DELETE statements, the return value is the number of rows affected by the command. For all other types of statements, the return value is -1." As the affected rows information cannot be retrieved in firebird when working with stored procedures the provider will always return -1 in that case. ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ Firebird-net-provider mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/firebird-net-provider
