Hi,
With "SQL Server.OLEDBProvider=prAuto" how can we tell which provider is actually being used by the connection?
thanks
Fred
OLEDBProvider=prAuto
Re: OLEDBProvider=prAuto
When the connection property TUniConnection.SpecificOptions.Values['SQL Server.OLEDBProvider'] is set to 'prAuto', this means that SQL Native Client provider will be used if it is installed on the client PC. Otherwise, UniDAC will use the standard OLEDB provider.
After establishing connection, you can learn the version number of the provider used by this connection from the TUniConnection.ClientVersion property value.
After establishing connection, you can learn the version number of the provider used by this connection from the TUniConnection.ClientVersion property value.