From: olegmad <ol...@ya...> - 2003-10-06 12:08:27
|
Hi, again! I have SP, named "GetSomething" (mix case!) when i derive parameters from SP - all ok. FbCommand dbCommand = connection.CreateCommand(); dbCommand.CommandText = "GetSomething"; dbCommand.CommandType = CommandType.StoredProcedure; FbCommandBuilder.DeriveParameters(dbCommand); But! When i try execute this SP. dbCommand.ExecuteReader(); I catch this exception: ---------------------------------------- An unhandled exception of type 'FirebirdSql.Data.Firebird.FbException' occurred in ----------------------------------------- firebirdsql.data.firebird.dll Additional information: Dynamic SQL Error SQL error code = -204 Procedure unknown GETSOMETHING ----------------------------------------- Look on SP name!!! It's in hi case! Thanks.... Bye. |