1ee1147462
The drivers were never public API. They were exposed by mistake in public headers. What's more, they have #include'd a private header (qsqlcachedresult_p.h) since at least Qt 4.5.1. That means no one used those headers in Qt 4 (private headers weren't installed then) and it's unlikely anyone did in 5.0. Change-Id: Ie0a47bcf0260ee6bdd3d8494b78fd1eec28a2d6b Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com> Reviewed-by: Mark Brand <mabrand@mabrand.nl> |
||
---|---|---|
.. | ||
doc | ||
drivers | ||
kernel | ||
models | ||
README.module | ||
sql.pro |
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.