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
Slávek Banko 9a6ac9dde5
Fix build with PostgreSQL 12+.
5 years ago
..
drivers Fix build with PostgreSQL 12+. 5 years ago
README.module qt -> tqt conversion: 6 years ago
ntqdatabrowser.h QT_NO_* -> TQT_NO_* renaming. 6 years ago
ntqdatatable.h QT_NO_* -> TQT_NO_* renaming. 6 years ago
ntqdataview.h QT_NO_* -> TQT_NO_* renaming. 6 years ago
ntqeditorfactory.h QT_NO_* -> TQT_NO_* renaming. 6 years ago
ntqsql.h QT_NO_* -> TQT_NO_* renaming. 6 years ago
ntqsqlcursor.h QT_NO_* -> TQT_NO_* renaming. 6 years ago
ntqsqldatabase.h QT_NO_* -> TQT_NO_* renaming. 6 years ago
ntqsqldriver.h QT_NO_* -> TQT_NO_* renaming. 6 years ago
ntqsqldriverplugin.h QT_NO_* -> TQT_NO_* renaming. 6 years ago
ntqsqleditorfactory.h QT_NO_* -> TQT_NO_* renaming. 6 years ago
ntqsqlerror.h QT_NO_* -> TQT_NO_* renaming. 6 years ago
ntqsqlfield.h QT_NO_* -> TQT_NO_* renaming. 6 years ago
ntqsqlform.h QT_NO_* -> TQT_NO_* renaming. 6 years ago
ntqsqlindex.h QT_NO_* -> TQT_NO_* renaming. 6 years ago
ntqsqlpropertymap.h QT_NO_* -> TQT_NO_* renaming. 6 years ago
ntqsqlquery.h Adjusted to use new TQStringVariantMap type. 5 years ago
ntqsqlrecord.h QT_NO_* -> TQT_NO_* renaming. 6 years ago
ntqsqlresult.h QT_NO_* -> TQT_NO_* renaming. 6 years ago
ntqsqlselectcursor.h QT_NO_* -> TQT_NO_* renaming. 6 years ago
qdatabrowser.cpp QT_NO_* -> TQT_NO_* renaming. 6 years ago
qdatatable.cpp QT_NO_* -> TQT_NO_* renaming. 6 years ago
qdataview.cpp QT_NO_* -> TQT_NO_* renaming. 6 years ago
qeditorfactory.cpp QT_NO_* -> TQT_NO_* renaming. 6 years ago
qsql.cpp Update to latest tqt3 automated conversion 12 years ago
qsqlcursor.cpp QT_NO_* -> TQT_NO_* renaming. 6 years ago
qsqldatabase.cpp QT_NO_* -> TQT_NO_* renaming. 6 years ago
qsqldriver.cpp QT_NO_* -> TQT_NO_* renaming. 6 years ago
qsqldriverinterface_p.h QT_NO_* -> TQT_NO_* renaming. 6 years ago
qsqldriverplugin.cpp QT_NO_* -> TQT_NO_* renaming. 6 years ago
qsqleditorfactory.cpp QT_NO_* -> TQT_NO_* renaming. 6 years ago
qsqlerror.cpp QT_NO_* -> TQT_NO_* renaming. 6 years ago
qsqlextension_p.cpp Adjusted to use new TQStringVariantMap type. 5 years ago
qsqlextension_p.h Adjusted to use new TQStringVariantMap type. 5 years ago
qsqlfield.cpp QT_NO_* -> TQT_NO_* renaming. 6 years ago
qsqlform.cpp QT_NO_* -> TQT_NO_* renaming. 6 years ago
qsqlindex.cpp QT_NO_* -> TQT_NO_* renaming. 6 years ago
qsqlmanager_p.cpp QT_NO_* -> TQT_NO_* renaming. 6 years ago
qsqlmanager_p.h QT_NO_* -> TQT_NO_* renaming. 6 years ago
qsqlpropertymap.cpp QT_NO_* -> TQT_NO_* renaming. 6 years ago
qsqlquery.cpp Adjusted to use new TQStringVariantMap type. 5 years ago
qsqlrecord.cpp QT_NO_* -> TQT_NO_* renaming. 6 years ago
qsqlresult.cpp QT_NO_* -> TQT_NO_* renaming. 6 years ago
qsqlselectcursor.cpp QT_NO_* -> TQT_NO_* renaming. 6 years ago
qt_sql.pri Automated update from Qt3 9 years ago

README.module

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

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 TQt library to compile the specified driver into
the TQt lib itself.

For example, to build the PostgreSQL driver directly into the Qt
library, configure TQt 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 TQt like this:

	./configure -plugin-sql-psql

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