diff options
Diffstat (limited to 'doc/man/man3/tqsqldatabase.3qt')
-rw-r--r-- | doc/man/man3/tqsqldatabase.3qt | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/man/man3/tqsqldatabase.3qt b/doc/man/man3/tqsqldatabase.3qt index f5b31e03d..ec9d10c66 100644 --- a/doc/man/man3/tqsqldatabase.3qt +++ b/doc/man/man3/tqsqldatabase.3qt @@ -34,10 +34,10 @@ Inherits TQObject. .BI "bool \fBisOpenError\fR () const" .br .ti -1c -.BI "QStringList \fBtables\fR () const" +.BI "TQStringList \fBtables\fR () const" .br .ti -1c -.BI "QStringList \fBtables\fR ( TQSql::TableType type ) const" +.BI "TQStringList \fBtables\fR ( TQSql::TableType type ) const" .br .ti -1c .BI "TQSqlIndex \fBprimaryIndex\fR ( const TQString & tablename ) const" @@ -133,7 +133,7 @@ Inherits TQObject. .BI "bool \fBcontains\fR ( const TQString & connectionName = defaultConnection )" .br .ti -1c -.BI "QStringList \fBdrivers\fR ()" +.BI "TQStringList \fBdrivers\fR ()" .br .ti -1c .BI "void \fBregisterSqlDriver\fR ( const TQString & name, const TQSqlDriverCreatorBase * creator )" @@ -298,16 +298,16 @@ Returns the name of the database. See the "databaseName" property for details. Returns the database driver used to access the database connection. .SH "TQString TQSqlDatabase::driverName () const" Returns the name of the driver used by the database connection. -.SH "QStringList TQSqlDatabase::drivers ()\fC [static]\fR" +.SH "TQStringList TQSqlDatabase::drivers ()\fC [static]\fR" Returns a list of all the available database drivers. .PP Note that if you want to iterate over the list, you should iterate over a copy, e.g. .PP .nf .br - QStringList list = TQSqlDatabase::drivers(); + TQStringList list = TQSqlDatabase::drivers(); .br - QStringList::Iterator it = list.begin(); + TQStringList::Iterator it = list.begin(); .br while( it != list.end() ) { .br @@ -420,16 +420,16 @@ Sets the password used to connect to the database to \fIpassword\fR. See the "pa Sets the port used to connect to the database to \fIp\fR. See the "port" property for details. .SH "void TQSqlDatabase::setUserName ( const TQString & name )\fC [virtual]\fR" Sets the user name connected to the database to \fIname\fR. See the "userName" property for details. -.SH "QStringList TQSqlDatabase::tables ( TQSql::TableType type ) const" +.SH "TQStringList TQSqlDatabase::tables ( TQSql::TableType type ) const" Returns a list of the database's tables, system tables and views, as specified by the parameter \fItype\fR. .PP Note that if you want to iterate over the list, you should iterate over a copy, e.g. .PP .nf .br - QStringList list = myDatabase.tables( TQSql::Tables | TQSql::Views ); + TQStringList list = myDatabase.tables( TQSql::Tables | TQSql::Views ); .br - QStringList::Iterator it = list.begin(); + TQStringList::Iterator it = list.begin(); .br while( it != list.end() ) { .br @@ -442,7 +442,7 @@ Note that if you want to iterate over the list, you should iterate over a copy, .fi .PP Example: sql/sqltable/main.cpp. -.SH "QStringList TQSqlDatabase::tables () const" +.SH "TQStringList TQSqlDatabase::tables () const" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP Returns a list of the database's tables that are visible to the user. To include views or system tables, use the version of this function that takes a table \fCtype\fR parameter. @@ -451,9 +451,9 @@ Note that if you want to iterate over the list, you should iterate over a copy, .PP .nf .br - QStringList list = myDatabase.tables(); + TQStringList list = myDatabase.tables(); .br - QStringList::Iterator it = list.begin(); + TQStringList::Iterator it = list.begin(); .br while( it != list.end() ) { .br |