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
Alexander Golubev 3cba79c7f5
Fix FTBFS with -qt-sql-sqlite3
2 months ago
..
drivers Replace Q_WS_* defines with TQ_WS_* equivalents 2 months ago
README.module qt -> tqt conversion: 6 years ago
ntqdatabrowser.h Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN 8 months ago
ntqdatatable.h Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN 8 months ago
ntqdataview.h Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN 8 months ago
ntqeditorfactory.h Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN 8 months ago
ntqsql.h Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN 8 months ago
ntqsqlcursor.h Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN 8 months ago
ntqsqldatabase.h Replace QT_STATIC_CONST_* with actual definitions 2 months ago
ntqsqldriver.h Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN 8 months ago
ntqsqldriverplugin.h Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN 8 months ago
ntqsqleditorfactory.h Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN 8 months ago
ntqsqlerror.h Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN 8 months ago
ntqsqlfield.h Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN 8 months ago
ntqsqlform.h Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN 8 months ago
ntqsqlindex.h Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN 8 months ago
ntqsqlpropertymap.h Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN 8 months ago
ntqsqlquery.h Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN 8 months ago
ntqsqlrecord.h Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN 8 months ago
ntqsqlresult.h Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN 8 months ago
ntqsqlselectcursor.h Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN 8 months ago
qdatabrowser.cpp QT_NO_* -> TQT_NO_* renaming. 6 years ago
qdatatable.cpp Rename METHOD, SIGNAL, SLOT to TQ_METHOD, TQ_SIGNAL, TQ_SLOT 4 months 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 Replace QT_STATIC_CONST_* with actual definitions 2 months ago
qsqldriver.cpp QT_NO_* -> TQT_NO_* renaming. 6 years ago
qsqldriverinterface_p.h Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN 8 months ago
qsqldriverplugin.cpp Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN 8 months 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 Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN 8 months 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 Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN 8 months ago
qsqlpropertymap.cpp QT_NO_* -> TQT_NO_* renaming. 6 years ago
qsqlquery.cpp Rename METHOD, SIGNAL, SLOT to TQ_METHOD, TQ_SIGNAL, TQ_SLOT 4 months ago
qsqlrecord.cpp Replace various Q_* and QT_* defines with TQ_* and TQT_* 8 months ago
qsqlresult.cpp QT_NO_* -> TQT_NO_* renaming. 6 years ago
qsqlselectcursor.cpp QT_NO_* -> TQT_NO_* renaming. 6 years ago
qt_sql.pri Fix FTBFS with -qt-sql-sqlite3 2 months 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.