Subject | Re: Antw: Re: [IBO] TIBOQuery ParamsByName SQL Error -804 data type |
---|---|
Author | Helen Borrie (TeamIBO) |
Post date | 2002-02-17T14:27:12Z |
At 02:56 PM 17-02-02 +0200, you wrote:
i.e. the database is receiving this statement:
select * from MyTable where MyDateField = 'some string'
or
select * from MyTable where MyDateField = <some date>
Neither is recognised by the database as DATE.
You can pass either a Date Literal in an SQL statement which you construct yourself (not recommended; and you can't use a parameter for this as it is not a string type) or you can pass a TDateTime. TDate is not the right format for converting to a Dialect 3 DATE type.
Change MyDateVar to a TDateTime and do
Query.ParamByName('MySearchDate').asDateTime := MyDateVar;
regards,
Helen Borrie (TeamIBO Support)
** Please don't email your support questions privately **
Ask on the list and everyone benefits
Don't forget the IB Objects online FAQ - link from any page at www.ibobjects.com
>IB Version is "6.0.1.0" Dialect is "3"No, the parameter is checked by the database during Prepare and, if it is the wrong type, or (as in your case) an unknown type, you will get a database exception.
>"MyDateVar" in Delphi is "tdate"
>"MyDateField" in IBtable is "Date"
>? "MySearchDate" ?
>? Parameter is only defined in the Statement ?
i.e. the database is receiving this statement:
select * from MyTable where MyDateField = 'some string'
or
select * from MyTable where MyDateField = <some date>
Neither is recognised by the database as DATE.
You can pass either a Date Literal in an SQL statement which you construct yourself (not recommended; and you can't use a parameter for this as it is not a string type) or you can pass a TDateTime. TDate is not the right format for converting to a Dialect 3 DATE type.
Change MyDateVar to a TDateTime and do
Query.ParamByName('MySearchDate').asDateTime := MyDateVar;
regards,
Helen Borrie (TeamIBO Support)
** Please don't email your support questions privately **
Ask on the list and everyone benefits
Don't forget the IB Objects online FAQ - link from any page at www.ibobjects.com