july ken 27.Oct.06 07:33 PM a Web browser Connector for ODBCLC LSX - All ReleasesLinux
I configure ODBC for Progress in my Linux OS.
I have an app which have to connect to a progress DB.
I have a form that tests the connection and It´s OK, I even can select fields from tables (via a form) to configure which fields I´ll work with.
When I pass in my Lotus Script code the SQL select sentence, I fetch no records. Here is my code.
conOri As LCConnection
Dim l_control As Long
Dim rst As New LCFieldList
dim s_sql as string
s_sql="SELECT MYFIELD FROM MYTABLE"
l_control = conOri.Execute( s_sql , rst )
I´ve been using this code to fech records from an Oracle database and it works OK!!!