Difference between revisions of "Error Messages/41083"
AManandhar (talk | contribs) |
|||
Line 1: | Line 1: | ||
− | + | [[Category: Error messages]] | |
− | + | == Error message examples == | |
− | + | :<code>''SqlDriverInfo: Driver not found.''</code> | |
+ | == 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: | 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: | ||
− | + | :<code>SqlDriverInfo("sql server")</code> | |
And the following would correct the above error. | And the following would correct the above error. | ||
− | |||
− | = Remedies = | + | :<code>SqlDriverInfo("SQL Server")</code> |
+ | |||
+ | == Remedies == | ||
Call [[SqlDriverInfo|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. | Call [[SqlDriverInfo|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== | |
+ | * [[SqlDriverInfo]] | ||
+ | * [[Querying Access database from Analytica 64]] | ||
+ | * [[Database access]] | ||
+ | * [[Database functions]] |
Latest revision as of 21:12, 29 February 2016
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
Enable comment auto-refresher