Topics

03 Troubleshooting
Designer
Using LotusScript Data Object on AIX

The Intersolv Driver Pack version 3.02 for AIX contains an archived version of the driver manager libodbc.a, while LotusScript Data Object (LS:DO) requires an executable or shared object version of the driver manager. To check the type of your libodbc.a, enter the following command:

file libodbc.a

In case of an archive file, you need to extract the executable or shared object version of the driver manager odbc.so with the following:

ar -x libodbc.a

Save the archived version and rename odbc.so to the new libodbc.a with the following:

mv odbc.so libodbc.a

so that the driver manager is an executable or shared object file.