From 6f57abfc9cd3acf1d648aee696947ac9216adb71 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 9 Sep 2024 14:57:42 +0900 Subject: Rename remaining ntq[s-z]* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/tqsqlquery.html | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'doc/html/tqsqlquery.html') diff --git a/doc/html/tqsqlquery.html b/doc/html/tqsqlquery.html index dfffac41e..474c49682 100644 --- a/doc/html/tqsqlquery.html +++ b/doc/html/tqsqlquery.html @@ -212,7 +212,7 @@ the out parameter. int i = query.boundValue( 1 ).toInt(); // i is 65. -

See also TQSqlDatabase, TQSqlCursor, TQVariant, and Database Classes. +

See also TQSqlDatabase, TQSqlCursor, TQVariant, and Database Classes.


Member Function Documentation

TQSqlQuery::TQSqlQuery ( TQSqlResult * r ) @@ -242,7 +242,7 @@ Constructs a copy of other.

Destroys the object and frees any allocated resources. -

void TQSqlQuery::addBindValue ( const TQVariant & val, TQSql::ParameterType type ) +

void TQSqlQuery::addBindValue ( const TQVariant & val, TQSql::ParameterType type )

Adds the value val to the list of values when using positional value binding. The order of the addBindValue() calls determines @@ -251,7 +251,7 @@ If type is TQSql::Out or exec() call.

See also bindValue(), prepare(), and exec(). -

void TQSqlQuery::addBindValue ( const TQVariant & val ) +

void TQSqlQuery::addBindValue ( const TQVariant & val )

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Binds the placeholder with type TQSql::In. @@ -276,7 +276,7 @@ Protected virtual function called before the internal record pointer is moved to a new record. The default implementation does nothing. -

void TQSqlQuery::bindValue ( const TQString & placeholder, const TQVariant & val, TQSql::ParameterType type ) +

void TQSqlQuery::bindValue ( const TQString & placeholder, const TQVariant & val, TQSql::ParameterType type )

Set the placeholder placeholder to be bound to value val in the prepared statement. Note that the placeholder mark (e.g :) @@ -285,17 +285,17 @@ is TQSql::Out or exec() call.

See also addBindValue(), prepare(), and exec(). -

void TQSqlQuery::bindValue ( const TQString & placeholder, const TQVariant & val ) +

void TQSqlQuery::bindValue ( const TQString & placeholder, const TQVariant & val )

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Binds the placeholder with type TQSql::In. -

void TQSqlQuery::bindValue ( int pos, const TQVariant & val ) +

void TQSqlQuery::bindValue ( int pos, const TQVariant & val )

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Binds the placeholder at position pos with type TQSql::In. -

void TQSqlQuery::bindValue ( int pos, const TQVariant & val, TQSql::ParameterType type ) +

void TQSqlQuery::bindValue ( int pos, const TQVariant & val, TQSql::ParameterType type )

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Set the placeholder in position pos to be bound to value val @@ -304,11 +304,11 @@ is TQSql::Out or exec() call.

See also addBindValue(), prepare(), and exec(). -

TQVariant TQSqlQuery::boundValue ( const TQString & placeholder ) const +

TQVariant TQSqlQuery::boundValue ( const TQString & placeholder ) const

Returns the value for the placeholder. -

TQVariant TQSqlQuery::boundValue ( int pos ) const +

TQVariant TQSqlQuery::boundValue ( int pos ) const

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Returns the value for the placeholder at position pos. @@ -568,7 +568,7 @@ statement, use numRowsAffected().

See also isActive(), numRowsAffected(), and TQSqlDriver::hasFeature().

Example: sql/overview/navigating/main.cpp. -

TQVariant TQSqlQuery::value ( int i ) const [virtual] +

TQVariant TQSqlQuery::value ( int i ) const [virtual]

Returns the value of the i-th field in the query (zero based).

The fields are numbered from left to right using the text of the @@ -576,7 +576,7 @@ Returns the value of the i-th field in the query (zero based). field 0 is forename and field 1 is surname. Using SELECT * is not recommended because the order of the fields in the query is undefined. -

An invalid TQVariant is returned if field i does not exist, if +

An invalid TQVariant is returned if field i does not exist, if the query is inactive, or if the query is positioned on an invalid record.

See also prev(), next(), first(), last(), seek(), isActive(), and isValid(). -- cgit v1.2.3