qt6-bb10/src/sql
Stephen Kelly 5a9de4c676 Always use QAIM to get the default flags.
Change-Id: I801f5c8023e3e3672fde28139a7f34f640e650f5
Reviewed-by: Lars Knoll <lars.knoll@digia.com>
2012-11-28 08:43:31 +01:00
..
doc Fix example paths in example manifests that are used by Qt Creator. 2012-11-26 17:33:37 +01:00
drivers tr()-Fix: Do not add up translateable strings. 2012-11-26 21:23:15 +01:00
kernel create interface QSqlDriver::cancelQuery() 2012-11-20 14:13:07 +01:00
models Always use QAIM to get the default flags. 2012-11-28 08:43:31 +01:00
README.module Initial import from the monolithic Qt. 2011-04-27 12:05:43 +02:00
sql.pro remove explicit load(qt_build_config)s from the libraries 2012-10-19 13:02:17 +02:00

README.module

Before building the Qt library, the Qt SQL module can be enabled for
specific databases using 'configure'.  'configure' is located at the
top of your QTDIR.

Specific databases drivers can be enabled using one of the following
options:

	./configure [-qt-sql-<driver>] [-plugin-sql-<driver>]

or disabled using the following option:

	./configure [-no-sql-<driver>]

Where <driver> is the name of the driver, for example 'psql'.  This
will configure the Qt library to compile the specified driver into
the Qt lib itself.

For example, to build the PostgreSQL driver directly into the Qt
library, configure Qt like this:

	./configure -qt-sql-psql

In addition, you may need to specify an extra include path, as some
database drivers require headers for the database they are using,
for example:

	./configure -qt-sql-psql -I/usr/local/include

If instead you need to build the PostgreSQL driver as a dynamically
loaded plugin, configure Qt like this:

	./configure -plugin-sql-psql

To compile drivers as dynamically loaded plugins, see the
QTDIR/plugins/src/sqldrivers directory.  Use 'configure -help'
for a complete list of configure options.  See the Qt documentation
for a complete list of supported database drivers.