You can SQLite databases using these ways:

1. Opening through FD interface. Select FD interface, click SQLite, then fill all needed database parameters.

Example of configuring a database connection:

(colored are required parameters)

Vendor libraryC:\sqlite\sqlite3.dll
Databasec:\databases\products.db
Shared cacheTrue
Blocking modeExclusive
Open modeReadWrite
SQL command separator;

2. Opening through ODBC DSN (interface: ADO or BDE). Select ODBC data source option and then select the ODBC DSN from the drop-down list. But first, you should create an ODBC DSN of the corresponding type using Windows administrative tools, and point it to the database file.

3. Opening through connection string (interface: ADO). Select Connection string option and write a connection string. This way is the most flexible one because it allows to specify many additional parameters in the connection string and override standard Exportizer connection behavior. But it is recommended basically for advanced users. Here are basic connection strings (more examples and details can be found in the Internet):

Driver=SQLite3 ODBC Driver;Database=C:\MyData\My_db.db;   (SQLite3 ODBC Driver must be installed)

The bit-version (32 or 64) of SQLite vendor library must match the bit-version of the application.
This database type is supported only in Exportizer Enterprise. Exportizer Pro can open such databases via ODBC only.
If you are asked for database password, this means the application could not connect the database without password. So, you should either enter it or, if you are sure the database is not password protected, just click OK without entering user name and password to see the error message.

See also

 Connection Strings Examples