Hello!

I'm also new in Firebird, but here is my opinion:
you shouldn't use "select whatever from stored procedure", because it
is behaving like a select statement. You should set up something like
this:
FbCommand command = new FbCommand("SP_GEN_SAMPLESUMMARIES_ID", connection);
command.CommandType = CommandType.StoredProcedure;

FbParameter parameter = new FbParameter();
parameter.Name = "id";
parameter.Direction = ParameterDirection.Output;

String str;
command.ExecuteNonQuery();

str = command.Parameters["id"].Value.ToString();

Maybe the keywords are not completely correct, as I don't have VS on
this machine, so I cannot check it, but you got the point I hope.

    Imre

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Firebird-net-provider mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider

Reply via email to