qt5base-lts/src/sql
Marcel Krems e6857b7ebc Updated QSql{Query,Result}::bindValue doc to reflect the current state.
Since 5.0 it is possible to use one call to bindValue to bind
values to multiple placeholders with the same name.

Task-number: QTBUG-23360
Change-Id: Ic838150d25dd07bca7bc9e5d91ab3362a73833d6
Reviewed-by: Matt Newell <newellm@blur.com>
Reviewed-by: Mark Brand <mabrand@mabrand.nl>
2014-09-08 16:18:19 +02:00
..
doc Windows: Add Qt Creator PATH update tip for missing SQL client dlls 2014-07-22 11:32:08 +02:00
drivers Initialize the count variable used in SQLNumResultCols to 0 2014-05-27 19:23:58 +02:00
kernel Updated QSql{Query,Result}::bindValue doc to reflect the current state. 2014-09-08 16:18:19 +02:00
models [QtSql][QSqlTableModel] fix failure to refresh in selectRow() 2014-04-27 20:39:11 +02:00
README.module Initial import from the monolithic Qt. 2011-04-27 12:05:43 +02:00
sql.pro Enable bundling Qt in Android package in build system 2013-05-01 11:24:15 +02:00

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.