Controlador Nativo MsSql

Estoy usan Clarion11 11.0.13401, en el equipo de test, en el ODBC image
tengo varios drivers para SQL Server , cual utiliza el controlador Nativo? donde se determina o cual es el criterio de seleccion ?

Desde ya muchas gracias
Saludos Jose Goldaracena

You can find out what driver is being used by using Prop:ConnectString on one of your tables after opening eg
MESSAGE(YourTableName{Prop:ConnectString})

You can force Clarion to use a particular driver by adding details to the Global connection string variable.
How you do it depends on which Clarion driver you are using MSSQL or ODBC

For MSSQL you add the driver details to the end of the string after a semi-colon eg

glo:owner = 'SQLServer\InstanceName,username,password;Driver={{SQL Server Native Client 11.0}

For ODBC you simply specify the required driver in the string eg

glo:owner = |
‘Driver={{SQL Server Native Client 11.0};Server=LENOVO-PC\SQLEXPRESS;Database=PEH2015;Uid=sa;Pwd=sdm2010;’

3 Likes

Muchas gracias, a sido de gran ayuda.
Saludos José