Hello Imre Thanks for your proposuals. It looks like a very direct and fast access. So I have to type a little more, but I will take a look at it.
Chris ----- Original Message ----- From: "Balla Imre" <[EMAIL PROTECTED]> To: "For users and developers of the Firebird .NET providers" <[email protected]> Sent: Friday, August 18, 2006 3:24 PM Subject: Re: [Firebird-net-provider] DDEX stored procedure problem > 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 > > __________ NOD32 1.1713 (20060817) Information __________ > > Diese E-Mail wurde vom NOD32 antivirus system geprüft > http://www.nod32.com > > ------------------------------------------------------------------------- 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
