summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqsqlrecord.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-09-09 14:57:42 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-09-12 18:58:18 +0900
commit6f57abfc9cd3acf1d648aee696947ac9216adb71 (patch)
tree4ae374b1ce01d388bca2249c5d903d79a6cb814f /doc/man/man3/tqsqlrecord.3qt
parent0582c90a9ed4b965629267713f51c0da7c38b39d (diff)
downloadtqt3-6f57abfc9cd3acf1d648aee696947ac9216adb71.tar.gz
tqt3-6f57abfc9cd3acf1d648aee696947ac9216adb71.zip
Rename remaining ntq[s-z]* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqsqlrecord.3qt')
-rw-r--r--doc/man/man3/tqsqlrecord.3qt16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/man/man3/tqsqlrecord.3qt b/doc/man/man3/tqsqlrecord.3qt
index c97cce5e..61f8b37c 100644
--- a/doc/man/man3/tqsqlrecord.3qt
+++ b/doc/man/man3/tqsqlrecord.3qt
@@ -28,16 +28,16 @@ Inherited by TQSqlCursor and TQSqlIndex.
.BI "virtual \fB~TQSqlRecord\fR ()"
.br
.ti -1c
-.BI "virtual QVariant \fBvalue\fR ( int i ) const"
+.BI "virtual TQVariant \fBvalue\fR ( int i ) const"
.br
.ti -1c
-.BI "virtual QVariant \fBvalue\fR ( const TQString & name ) const"
+.BI "virtual TQVariant \fBvalue\fR ( const TQString & name ) const"
.br
.ti -1c
-.BI "virtual void \fBsetValue\fR ( int i, const QVariant & val )"
+.BI "virtual void \fBsetValue\fR ( int i, const TQVariant & val )"
.br
.ti -1c
-.BI "virtual void \fBsetValue\fR ( const TQString & name, const QVariant & val )"
+.BI "virtual void \fBsetValue\fR ( const TQString & name, const TQVariant & val )"
.br
.ti -1c
.BI "bool \fBisGenerated\fR ( int i ) const"
@@ -209,12 +209,12 @@ Sets the value of field \fIi\fR to NULL. If the field does not exist, nothing ha
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Sets the value of the field called \fIname\fR to NULL. If the field does not exist, nothing happens.
-.SH "void TQSqlRecord::setValue ( int i, const QVariant & val )\fC [virtual]\fR"
+.SH "void TQSqlRecord::setValue ( int i, const TQVariant & val )\fC [virtual]\fR"
Sets the value of the field at position \fIi\fR to \fIval\fR. If the field does not exist, nothing happens.
.PP
Examples:
.)l sql/overview/insert/main.cpp, sql/overview/insert2/main.cpp, sql/overview/subclass5/main.cpp, sql/overview/update/main.cpp, and sql/sqltable/main.cpp.
-.SH "void TQSqlRecord::setValue ( const TQString & name, const QVariant & val )\fC [virtual]\fR"
+.SH "void TQSqlRecord::setValue ( const TQString & name, const TQVariant & val )\fC [virtual]\fR"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Sets the value of the field called \fIname\fR to \fIval\fR. If the field does not exist, nothing happens.
@@ -230,13 +230,13 @@ Returns a list of all the record's field names, each having the prefix \fIprefix
Note that fields which have generated set to FALSE are \fInot\fR included. (See isGenerated()). If \fIprefix\fR is supplied, e.g. a table name, all fields are prefixed in the form:
.PP"
\fIprefix\fR.<fieldname>"
-.SH "QVariant TQSqlRecord::value ( int i ) const\fC [virtual]\fR"
+.SH "TQVariant TQSqlRecord::value ( int i ) const\fC [virtual]\fR"
Returns the value of the field located at position \fIi\fR in the record. If field \fIi\fR does not exist the resultant behaviour is undefined.
.PP
This function should be used with TQSqlQuerys. When working with a TQSqlCursor the value(const TQString&) overload which uses field names is more appropriate.
.PP
Example: sql/overview/update/main.cpp.
-.SH "QVariant TQSqlRecord::value ( const TQString & name ) const\fC [virtual]\fR"
+.SH "TQVariant TQSqlRecord::value ( const TQString & name ) const\fC [virtual]\fR"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Returns the value of the field called \fIname\fR in the record. If