vote up 2 vote down star

Hi,

Why doesn't this work (when parameter is set to 1):

SELECT * FROM TABLE WHERE TIMESTAMPFIELD > (CURRENT_TIMESTAMP - ?)

But this works:

SELECT * FROM TABLE WHERE TIMESTAMPFIELD > (CURRENT_TIMESTAMP - 1)

I get error message: "conversion error from string "39723.991882951" "

I'm using Firebird 2.1

EDIT:

I found the answer myself with a little help:

SELECT * FROM TABLE WHERE TIMESTAMPFIELD > (CURRENT_TIMESTAMP - CAST(? as DECIMAL(18,9))

Works if the parameter is given as float value.

flag

1 Answer

vote up 0 vote down check

Hi!

What do you want to do exactly? Maybe I can be more helpfull with more details.

SELECT * FROM TABLE WHERE TIMESTAMPFIELD > (CURRENT_TIMESTAMP - ?)

How do you set your parameter in your code? Which language do you use?

If you use Delphi, then your parameter should be passed as Float. Ie:

MyQuery.ParamByName('delta').asFloat := 0.1;

Try this and tell us if it's working

HTH

link|flag
It will give ""0,1" is not a valid date and time" – Harriv Oct 2 '08 at 21:09
Can you build your query at runtime, putting the value directly in the quesry instead of using a parameter? – vIceBerg Oct 2 '08 at 21:15
Of course, but that's not pretty :) – Harriv Oct 2 '08 at 21:16
On top of my head, I think you do not have the choice... Unfortunately, I have to leave work. I'm going to check if the'Res a way tomorrow – vIceBerg Oct 2 '08 at 21:20
I found the answer, you got me on the right track – Harriv Oct 2 '08 at 21:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.