Subject | Re: [firebird-support] error formating date in stored procedure |
---|---|
Author | Anderson Farias |
Post date | 2007-08-07T22:42:43Z |
Hi,
asuming you'll always have these 'string dates' as 'dd/mm/yyyy' you can use:
cast(
substring(str_date_field from 1 for 2)||'.'||
substring(str_date_field from 4 for 2)||'.'||
substring(str_date_field from 7 for 4)
as date)
('dd.mm.yyyy' is also a valid format for date 'input' on FB)
of course, if you could do this 'conversion' inside Delphi it'd be easier =)
Regards,
Anderson
asuming you'll always have these 'string dates' as 'dd/mm/yyyy' you can use:
cast(
substring(str_date_field from 1 for 2)||'.'||
substring(str_date_field from 4 for 2)||'.'||
substring(str_date_field from 7 for 4)
as date)
('dd.mm.yyyy' is also a valid format for date 'input' on FB)
of course, if you could do this 'conversion' inside Delphi it'd be easier =)
Regards,
Anderson
----- Original Message -----
From: "salenowon99" <forestsoftware@...>
Hi I'm repeatedly getting the following error message
Overflow occurred during data type conversion.Conversion error from
string "16/09/2004".