The Sybase Advantage StreamlineSQL ODBC driver is available for Windows in Version 10 for download in the Sybase devzone, here. A Linux version is also available, here, but I haven't tested it. In both cases you want the 32-bit version, to be compatible with the App Builder.

In Windows, the following connection string will get you connected to any table, whether it's in a DBC or not:

Code:
lcConnStr = [Driver=Advantage StreamlineSQL ODBC; DataDirectory=C:\VPME9APPS\NEXT\SCALEDSARDINE\VERSIONB\XCASE;DefaultType=FoxPro;ServerTypes=1]
From there, you use sqlstringconnect() to be the connection handle:

Code:
lnConn = sqlstringconnect(lcConnStr)
And then you can use sqlexec to do your querying:

Code:
lnRet=sqlexec(lnConn,"select * from ddrel","myRel")
And yes, for those of you familiar with our xCase2VPM product, this is code being written for xCase2Lianja. xCase2Lianja will be released as Open Source in LianjaX when it's ready to see the light of day.

enjoy,

Hank