03-14-2006 09:19 AM
03-14-2006 02:29 PM
Hi Frank,
It's been a while since I have done this, but it is (was??) doable. You will need to use the SQLExec Object. I must further warn you that the query syntax used is rather esoteric.
The following KB articles may come in handy:
Syntax For SQL Commands For The DataTable And SQLExec Objects In Lookout
03-21-2006 08:35 AM
03-21-2006 09:59 AM
Hi Frank,
You would use the "c" datamembers (see below), of the right datatype:
SQLExec Data Members
Data Member | Type | Read | Write | Description |
---|---|---|---|---|
c1 – c65535 | numeric | yes | no | Value of the nth column in the row returned by ODBC. |
c1.logical – c65535.logical | logical | yes | no | Value of the nth column in the row returned by ODBC. |
c1.txt – c65535.txt | text | yes | no | Value of the nth column in the row returned by ODBC. |
-Khalid