Board index » delphi » Errors using Live Queries using DATETIME on Informix 7.3

Errors using Live Queries using DATETIME on Informix 7.3

I'm trying to select a group of live records from Informix Dynamic Server
7.3 on an NT system. I'm trying to use a DATETIME in the selection. For
example:

select * from lane where start_when > DATETIME( 1990-01-01) TEAR to DAY

This works when it's not a live query, but if I try to make it live I get a
"Capability not supported" message. I tried this is the informix ISQL
program and didn't get any errors. I also tried to switch the DLLs and
chagned some of the database configuration parameters, but wasn't able to
get a working combination. Help!

Mark

 

Re:Errors using Live Queries using DATETIME on Informix 7.3


This is a known restriction and the live query parser doesn't handle server
specific syntax and functions.

T.Ramesh.

Quote
Mark Stinson wrote:
> I'm trying to select a group of live records from Informix Dynamic Server
> 7.3 on an NT system. I'm trying to use a DATETIME in the selection. For
> example:

> select * from lane where start_when > DATETIME( 1990-01-01) TEAR to DAY

> This works when it's not a live query, but if I try to make it live I get a
> "Capability not supported" message. I tried this is the informix ISQL
> program and didn't get any errors. I also tried to switch the DLLs and
> chagned some of the database configuration parameters, but wasn't able to
> get a working combination. Help!

> Mark

Re:Errors using Live Queries using DATETIME on Informix 7.3


Thanks for the confirmation. I must say I'm surprised. Isn't that a fairly
significant restriction? I've always touted Delphi as the best product
around with the best features. Do other solutions have similar restrictions,
I wonder?

Quote
Ramesh Theivendran wrote in message <364B25DD.45125...@inprise.com>...
>This is a known restriction and the live query parser doesn't handle server
>specific syntax and functions.

>T.Ramesh.

>Mark Stinson wrote:

>> I'm trying to select a group of live records from Informix Dynamic Server
>> 7.3 on an NT system. I'm trying to use a DATETIME in the selection. For
>> example:

>> select * from lane where start_when > DATETIME( 1990-01-01) TEAR to DAY

>> This works when it's not a live query, but if I try to make it live I get
a
>> "Capability not supported" message. I tried this is the informix ISQL
>> program and didn't get any errors. I also tried to switch the DLLs and
>> chagned some of the database configuration parameters, but wasn't able to
>> get a working combination. Help!

>> Mark

Re:Errors using Live Queries using DATETIME on Informix 7.3


If you think about what the live query parser does, it is already quite
complex (and flexible, for that matter).  Supporting server-specific
functions would add an entire new layer that Inprise must write for each
server.  At least developers can take control of updates through the
TUpdateSQL component.

As far as other "solutions" go, which ones even support live queries at all?

V/R
Russell L. Smith

Quote
Mark Stinson wrote in message <72j3il$h...@forums.borland.com>...
>Thanks for the confirmation. I must say I'm surprised. Isn't that a fairly
>significant restriction? I've always touted Delphi as the best product
>around with the best features. Do other solutions have similar
restrictions,
>I wonder?

Other Threads