Subject | Re: [IBO] SQLDA error not in a Stored Proc |
---|---|
Author | Jason Wharton |
Post date | 2001-01-08T20:57:34Z |
Need more informations.
Jason Wharton
CPS - Mesa AZ
http://www.ibobjects.com
Jason Wharton
CPS - Mesa AZ
http://www.ibobjects.com
----- Original Message -----
From: "Roger Webb" <RWebb@...>
To: "Ibo-List (E-mail)" <ibobjects@egroups.com>
Sent: Monday, January 08, 2001 11:49 AM
Subject: [IBO] SQLDA error not in a Stored Proc
> I've got an IB_Query that looks like this...
>
> The SQL is 'Select * from Items where Item_ID = :ItemId'
>
> The Code :
>
> try
> ibqList.ParamByName( 'ItemID' ).AsInteger := 7;
> ibqList.Open;
> ibqList.Close;
> Except
> on E:Exception do
> BuildString := E.Message;
> end;
>
> Buildstring ends up containing this info :
> Dynamic SQL Error SQL error code = -804 Incorrect values within SQLDA
> structure
>
> Any ideas... am I missing any info that would help?
>
> - Roger