You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tqt/src/sql
Michele Calgaro 92fe63114b
rename qmake to tqmake
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
2 months ago
..
drivers rename qmake to tqmake 2 months ago
README.module qt -> tqt conversion: 7 years ago
qt_sql.pri Drop Borland compiler specific code 11 months ago
tqdatabrowser.cpp Rename nt* sql related files to equivalent tq* 1 year ago
tqdatabrowser.h Rename str nt* related files to equivalent tq* 1 year ago
tqdatatable.cpp Rename ntqapplication, ntqconfig and ntqmodules files to equivalent tq* 11 months ago
tqdatatable.h Rename remaining ntq[s-z]* related files to equivalent tq* 1 year ago
tqdataview.cpp Rename nt* sql related files to equivalent tq* 1 year ago
tqdataview.h Rename ntqwidget* related files to equivalent tqwidget* 1 year ago
tqeditorfactory.cpp Rename remaining ntq[a-c]* related files to equivalent tq* (except ntqapplication.h and ntqconfig.h) 1 year ago
tqeditorfactory.h Rename remaining ntq[s-z]* related files to equivalent tq* 1 year ago
tqsql.cpp Rename nt* sql related files to equivalent tq* 1 year ago
tqsql.h Rename global classes nt* related files to equivalent tq* 1 year ago
tqsqlcursor.cpp Rename date and time nt* related files to equivalent tq* 1 year ago
tqsqlcursor.h Rename str nt* related files to equivalent tq* 1 year ago
tqsqldatabase.cpp Rename ntqapplication, ntqconfig and ntqmodules files to equivalent tq* 11 months ago
tqsqldatabase.h Rename str nt* related files to equivalent tq* 1 year ago
tqsqldriver.cpp Rename date and time nt* related files to equivalent tq* 1 year ago
tqsqldriver.h Rename str nt* related files to equivalent tq* 1 year ago
tqsqldriverinterface_p.h Rename private q* headers into equivalent tq* 1 year ago
tqsqldriverplugin.cpp Rename nt* sql related files to equivalent tq* 1 year ago
tqsqldriverplugin.h Rename global classes nt* related files to equivalent tq* 1 year ago
tqsqleditorfactory.cpp Rename remaining ntq[a-c]* related files to equivalent tq* (except ntqapplication.h and ntqconfig.h) 1 year ago
tqsqleditorfactory.h Rename nt* sql related files to equivalent tq* 1 year ago
tqsqlerror.cpp Rename remaining ntq[m-r]* related files to equivalent tq* (except ntqmodules.h) 1 year ago
tqsqlerror.h Rename str nt* related files to equivalent tq* 1 year ago
tqsqlextension_p.cpp Rename nt* sql related files to equivalent tq* 1 year ago
tqsqlextension_p.h Rename remaining ntq[s-z]* related files to equivalent tq* 1 year ago
tqsqlfield.cpp Rename nt* sql related files to equivalent tq* 1 year ago
tqsqlfield.h Rename remaining ntq[s-z]* related files to equivalent tq* 1 year ago
tqsqlform.cpp Rename utility class nt* related files to equivalent tq* 1 year ago
tqsqlform.h Rename template library nt* related files to equivalent tq* 1 year ago
tqsqlindex.cpp Rename nt* sql related files to equivalent tq* 1 year ago
tqsqlindex.h Rename remaining ntq[s-z]* related files to equivalent tq* 1 year ago
tqsqlmanager_p.cpp Rename ntqapplication, ntqconfig and ntqmodules files to equivalent tq* 11 months ago
tqsqlmanager_p.h Rename global classes nt* related files to equivalent tq* 1 year ago
tqsqlpropertymap.cpp Rename remaining ntq[m-r]* related files to equivalent tq* (except ntqmodules.h) 1 year ago
tqsqlpropertymap.h Rename remaining ntq[s-z]* related files to equivalent tq* 1 year ago
tqsqlquery.cpp Rename utility class nt* related files to equivalent tq* 1 year ago
tqsqlquery.h Rename remaining ntq[s-z]* related files to equivalent tq* 1 year ago
tqsqlrecord.cpp Rename remaining ntq[s-z]* related files to equivalent tq* 1 year ago
tqsqlrecord.h Rename remaining ntq[s-z]* related files to equivalent tq* 1 year ago
tqsqlresult.cpp Rename nt* sql related files to equivalent tq* 1 year ago
tqsqlresult.h Rename remaining ntq[s-z]* related files to equivalent tq* 1 year ago
tqsqlselectcursor.cpp Rename nt* sql related files to equivalent tq* 1 year ago
tqsqlselectcursor.h Rename nt* sql related files to equivalent tq* 1 year 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.