From: Derek E. <de...@sp...> - 2003-10-28 21:07:28
|
Really strange, but it is working today. Thanks for your help -----Original Message----- From: fir...@li... [mailto:fir...@li...] On Behalf Of Carlos Guzm=E1n =C1lvarez Sent: Tuesday, 28 October 2003 11:15 p.m. To: Derek Ekins Cc: fir...@li... Hello: It's working for me (.net 1.0). A more correct version : CREATE PROCEDURE SELECT_DATA RETURNS ( INT_FIELD INTEGER, VARCHAR_FIELD VARCHAR(100), DECIMAL_FIELD DECIMAL(15,2)) AS begin FOR SELECT INT_FIELD, VARCHAR_FIELD, DECIMAL_FIELD FROM=20 TEST_TABLE_01 INTO :INT_FIELD, :VARCHAR_FIELD, :DECIMAL_FIELD DO SUSPEND; end This is bad: Console.WriteLine("(0) {1}", reader.GetValue(0), = reader.GetValue(1)); needs to be: Console.WriteLine("{0} {1}", reader.GetValue(0), = reader.GetValue(1)); -- Best regards Carlos Guzm=E1n =C1lvarez Vigo-Spain ------------------------------------------------------- This SF.net email is sponsored by: The SF.net Donation Program. Do you like what SourceForge.net is doing for the Open Source Community? Make a contribution, and help us add new features and functionality. Click here: http://sourceforge.net/donate/ _______________________________________________ Firebird-net-provider mailing list Fir...@li... https://lists.sourceforge.net/lists/listinfo/firebird-net-provider |