revSetDatabaseDriverPath

Specifies where the Database library should look for database drivers.

# Metadata

Platforms: desktop, server, mobile OS: mac, windows, linux, ios, android Introduced: 2.0 Security: disk, network

# Syntax

revSetDatabaseDriverPath driverFolder

# Params

- driverFolder : The name and location of the folder where the database driver files are stored.

# Examples

revSetDatabaseDriverPath "../drivers/"

revSetDatabaseDriverPath the defaultFolder

# Description

Use the revSetDatabaseDriverPath command if you want to place the database drivers your application uses somewhere other than the same folder as the application.

To use an external SQL database, the Database library needs to communicate via a database driver for the database you're using. By default, the Database library looks for drivers in the same folder as the application. If you try to work with the Database library, and the database driver is not where LiveCode expects it to be, a script error will result.

If the database drivers your application needs are installed in a different folder, use the revSetDatabaseDriverPath command before you use any other commands or functions in the Database library, and before you display a field that you've set up to show data from a database (using the Database pane in the field property inspector). Usually, the best place for this command is in your stack startup or preOpenStack handler.

>*Important:* The revSetDatabaseDriverPath command is part of the > Database library. To ensure that the command works in a > standalone application, you must include this > LiveCode custom library when you create your > standalone application. In the Inclusions pane of the > Standalone Application Settings window, make sure both the > "Database" library checkbox and those of the database drivers you are > using are checked.

# Tags

# See