Difference between revisions of "Error Messages/41083"

 
Line 1: Line 1:
= Error Message Examples =
+
[[Category: Error messages]]
  
[[SqlDriverInfo]]: Driver not found.
+
== Error message examples ==
  
= Cause =
+
:<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:
  
SqlDriverInfo("sql server")
+
:<code>SqlDriverInfo("sql server")</code>
  
 
And the following would correct the above error.
 
And the following would correct the above error.
SqlDriverInfo("SQL Server")
 
  
= 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.
  
<br><comments />
+
==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


You are not allowed to post comments.