Error Messages/41083


Error message examples

SqlDriverInfo: Driver not found.

Cause

The driver passed to the SqlDriverInfo function was not found. The driver names are case sensitive, and this may have triggered this error. The following call would trigger this error:

SqlDriverInfo("sql server")

And the following would correct the above error.

SqlDriverInfo("SQL Server")

Remedies

Call SqlDriverInfo() without any parameters to get back all the available drivers, then call the function by passing the name of the driver to get information on the passed driver.

See Also

Comments


You are not allowed to post comments.