diff options
author | Michele Calgaro <[email protected]> | 2024-05-28 10:17:01 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-05-28 10:17:01 +0900 |
commit | 5fffa30386502b5423e45c2ed5e6af756b11c7b4 (patch) | |
tree | fa17e10b048e8e13433b861cbe98cf895b2324c7 /doc/man/man3/tqsqlerror.3qt | |
parent | 04913ce7a46fd027856e83a96205fdc388742a19 (diff) | |
download | tqt3-5fffa30386502b5423e45c2ed5e6af756b11c7b4.tar.gz tqt3-5fffa30386502b5423e45c2ed5e6af756b11c7b4.zip |
Rename nt* sql related files to equivalent tq*
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/man/man3/tqsqlerror.3qt')
-rw-r--r-- | doc/man/man3/tqsqlerror.3qt | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/doc/man/man3/tqsqlerror.3qt b/doc/man/man3/tqsqlerror.3qt index 5b609aa21..ad846e4a9 100644 --- a/doc/man/man3/tqsqlerror.3qt +++ b/doc/man/man3/tqsqlerror.3qt @@ -1,5 +1,5 @@ '\" t -.TH QSqlError 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- +.TH TQSqlError 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" license file included in the distribution for a complete license .\" statement. @@ -7,9 +7,9 @@ .ad l .nh .SH NAME -QSqlError \- SQL database error information +TQSqlError \- SQL database error information .SH SYNOPSIS -\fC#include <ntqsqlerror.h>\fR +\fC#include <tqsqlerror.h>\fR .PP .SS "Public Members" .in +1c @@ -17,16 +17,16 @@ QSqlError \- SQL database error information .BI "enum \fBType\fR { None, Connection, Statement, Transaction, Unknown }" .br .ti -1c -.BI "\fBQSqlError\fR ( const TQString & driverText = TQString::null, const TQString & databaseText = TQString::null, int type = QSqlError::None, int number = -1 )" +.BI "\fBQSqlError\fR ( const TQString & driverText = TQString::null, const TQString & databaseText = TQString::null, int type = TQSqlError::None, int number = -1 )" .br .ti -1c -.BI "\fBQSqlError\fR ( const QSqlError & other )" +.BI "\fBQSqlError\fR ( const TQSqlError & other )" .br .ti -1c -.BI "QSqlError & \fBoperator=\fR ( const QSqlError & other )" +.BI "TQSqlError & \fBoperator=\fR ( const TQSqlError & other )" .br .ti -1c -.BI "virtual \fB~QSqlError\fR ()" +.BI "virtual \fB~TQSqlError\fR ()" .br .ti -1c .BI "TQString \fBdriverText\fR () const" @@ -60,13 +60,13 @@ QSqlError \- SQL database error information .br .in -1c .SH DESCRIPTION -The QSqlError class provides SQL database error information. +The TQSqlError class provides SQL database error information. .PP This class is used to report database-specific errors. An error description and (if appropriate) a database-specific error number can be obtained using this class. .PP See also Database Classes. .SS "Member Type Documentation" -.SH "QSqlError::Type" +.SH "TQSqlError::Type" This enum type describes the type of SQL error that occurred. .TP \fCQSqlError::None\fR - no error occurred @@ -79,45 +79,45 @@ This enum type describes the type of SQL error that occurred. .TP \fCQSqlError::Unknown\fR - unknown error .SH MEMBER FUNCTION DOCUMENTATION -.SH "QSqlError::QSqlError ( const TQString & driverText = TQString::null, const TQString & databaseText = TQString::null, int type = QSqlError::None, int number = -1 )" +.SH "TQSqlError::TQSqlError ( const TQString & driverText = TQString::null, const TQString & databaseText = TQString::null, int type = TQSqlError::None, int number = -1 )" Constructs an error containing the driver error text \fIdriverText\fR, the database-specific error text \fIdatabaseText\fR, the type \fItype\fR and the optional error number \fInumber\fR. -.SH "QSqlError::QSqlError ( const QSqlError & other )" +.SH "TQSqlError::TQSqlError ( const TQSqlError & other )" Creates a copy of \fIother\fR. -.SH "QSqlError::~QSqlError ()\fC [virtual]\fR" +.SH "TQSqlError::~TQSqlError ()\fC [virtual]\fR" Destroys the object and frees any allocated resources. -.SH "TQString QSqlError::databaseText () const" +.SH "TQString TQSqlError::databaseText () const" Returns the text of the error as reported by the database. This may contain database-specific descriptions. -.SH "TQString QSqlError::driverText () const" +.SH "TQString TQSqlError::driverText () const" Returns the text of the error as reported by the driver. This may contain database-specific descriptions. -.SH "int QSqlError::number () const" +.SH "int TQSqlError::number () const" Returns the database-specific error number, or -1 if it cannot be determined. -.SH "QSqlError & QSqlError::operator= ( const QSqlError & other )" +.SH "TQSqlError & TQSqlError::operator= ( const TQSqlError & other )" Sets the error equal to \fIother\fR. -.SH "void QSqlError::setDatabaseText ( const TQString & databaseText )\fC [virtual]\fR" +.SH "void TQSqlError::setDatabaseText ( const TQString & databaseText )\fC [virtual]\fR" Sets the database error text to the value of \fIdatabaseText\fR. -.SH "void QSqlError::setDriverText ( const TQString & driverText )\fC [virtual]\fR" +.SH "void TQSqlError::setDriverText ( const TQString & driverText )\fC [virtual]\fR" Sets the driver error text to the value of \fIdriverText\fR. -.SH "void QSqlError::setNumber ( int number )\fC [virtual]\fR" +.SH "void TQSqlError::setNumber ( int number )\fC [virtual]\fR" Sets the database-specific error number to \fInumber\fR. -.SH "void QSqlError::setType ( int type )\fC [virtual]\fR" +.SH "void TQSqlError::setType ( int type )\fC [virtual]\fR" Sets the error type to the value of \fItype\fR. -.SH "void QSqlError::showMessage ( const TQString & msg = TQString::null ) const" +.SH "void TQSqlError::showMessage ( const TQString & msg = TQString::null ) const" \fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code. .PP This is a convenience function that pops up a QMessageBox containing the message returned by text(). An additional string can be passed in via the \fImsg\fR parameter, which will be concatenated with the text() message. .PP See also text(), driverText(), and databaseText(). -.SH "TQString QSqlError::text () const" +.SH "TQString TQSqlError::text () const" This is a convenience function that returns databaseText() and driverText() concatenated into a single string. .PP See also showMessage(), driverText(), and databaseText(). -.SH "int QSqlError::type () const" +.SH "int TQSqlError::type () const" Returns the error type, or -1 if the type cannot be determined. .PP -See also QSqlError::Type. +See also TQSqlError::Type. .SH "SEE ALSO" -.BR http://doc.trolltech.com/ntqsqlerror.html +.BR http://doc.trolltech.com/tqsqlerror.html .BR http://www.trolltech.com/faq/tech.html .SH COPYRIGHT Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the |