You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tqt3/src/sql
Timothy Pearson c740211ffb
Automated update from Qt3
11 years ago
..
drivers Automated update from Qt3 11 years ago
README.module Sync with latest script 13 years ago
ntqdatabrowser.h Automated update from Qt3 12 years ago
ntqdatatable.h Automated update from Qt3 12 years ago
ntqdataview.h Automated update from Qt3 12 years ago
ntqeditorfactory.h Automated update from Qt3 12 years ago
ntqsql.h Automated update from Qt3 12 years ago
ntqsqlcursor.h Automated update from Qt3 12 years ago
ntqsqldatabase.h Automated update from Qt3 12 years ago
ntqsqldriver.h Automated update from Qt3 12 years ago
ntqsqldriverplugin.h Automated update from Qt3 12 years ago
ntqsqleditorfactory.h Automated update from Qt3 12 years ago
ntqsqlerror.h Automated update from Qt3 12 years ago
ntqsqlfield.h Automated update from Qt3 12 years ago
ntqsqlform.h Automated update from Qt3 12 years ago
ntqsqlindex.h Automated update from Qt3 12 years ago
ntqsqlpropertymap.h Automated update from Qt3 12 years ago
ntqsqlquery.h Automated update from Qt3 11 years ago
ntqsqlrecord.h Latest update from qt3 12 years ago
ntqsqlresult.h Automated update from Qt3 12 years ago
ntqsqlselectcursor.h Automated update from Qt3 12 years ago
qdatabrowser.cpp Update to latest tqt3 automated conversion 12 years ago
qdatatable.cpp Automated update from Qt3 11 years ago
qdataview.cpp Update to latest tqt3 automated conversion 12 years ago
qeditorfactory.cpp Update to latest tqt3 automated conversion 12 years ago
qsql.cpp Update to latest tqt3 automated conversion 12 years ago
qsqlcursor.cpp Automated update from Qt3 11 years ago
qsqldatabase.cpp Automated update from Qt3 11 years ago
qsqldriver.cpp Automated conversion from qt3 12 years ago
qsqldriverinterface_p.h Automated update from Qt3 12 years ago
qsqldriverplugin.cpp Update to latest tqt3 automated conversion 12 years ago
qsqleditorfactory.cpp Update to latest tqt3 automated conversion 12 years ago
qsqlerror.cpp Update to latest tqt3 automated conversion 12 years ago
qsqlextension_p.cpp Sync with latest script 13 years ago
qsqlextension_p.h Automated update from Qt3 12 years ago
qsqlfield.cpp Automated conversion from qt3 12 years ago
qsqlform.cpp Update to latest tqt3 automated conversion 12 years ago
qsqlindex.cpp Automated conversion from qt3 12 years ago
qsqlmanager_p.cpp Automated conversion from qt3 12 years ago
qsqlmanager_p.h Automated update from Qt3 12 years ago
qsqlpropertymap.cpp Automated update from Qt3 12 years ago
qsqlquery.cpp Automated conversion from qt3 12 years ago
qsqlrecord.cpp Automated conversion from qt3 12 years ago
qsqlresult.cpp Update to latest tqt3 automated conversion 12 years ago
qsqlselectcursor.cpp Update to latest tqt3 automated conversion 12 years ago
qt_sql.pri Automated update from Qt3 12 years ago

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.