AXSQL Requirements

Advantage AXSQL RDDs

  Previous topic Next topic  

With the regular Advantage RDDs (ADSADT/AXDBFCDX/AXDBFNTX), no explicit connection to the Advantage server is necessary. The Advantage driver creates a new connection automatically based on the path of the given table. With SQL, there typically are no table paths given, only table names. For this reason the AXSQL RDDs require you to first connect to an Advantage server (local or remote) before executing a query. This is done using the AdsConnect60 ACE API. Once the connection is made, the connection handle must be given to the RDD using the AX_SetConnectionHandle function in the DBFAXS library. For example:

LOCAL dwRet AS DWORD

LOCAL hConnect AS DWORD

LOCAL oServer AS AdsSQLServer

dwRet := AdsConnect60( String2Psz( "\\server\share" ), ADS_REMOTE_SERVER, NULL_PSZ, NULL_PSZ, ADS_DEFAULT, @hConnect )

// Be sure to check dwRet to make sure the connection succeeded

AX_SetConnectionHandle( hConnect )

oServer := AdsSQLServer{ "SELECT * FROM customers", , , "AXSQLADT" }