From 1f0ce8533cc837aa2d4155b5fc17d2004bed0197 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 5 Jun 2024 19:02:23 +0900 Subject: Rename template library nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/tqsqlquery.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'doc/html/tqsqlquery.html') diff --git a/doc/html/tqsqlquery.html b/doc/html/tqsqlquery.html index 56e8929f5..d6624bbd3 100644 --- a/doc/html/tqsqlquery.html +++ b/doc/html/tqsqlquery.html @@ -313,7 +313,7 @@ Returns the value for the placeholder. 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. -

TQMap<TQString, TQVariant> TQSqlQuery::boundValues () const +

TQMap<TQString, TQVariant> TQSqlQuery::boundValues () const

Returns a map of the bound values.

The bound values can be examined in the following way: @@ -322,16 +322,16 @@ Returns a map of the bound values. ... // Examine the bound values - bound using named binding TQMap<TQString, TQVariant>::ConstIterator it; - TQMap<TQString, TQVariant> vals = query.boundValues(); - for ( it = vals.begin(); it != vals.end(); ++it ) + TQMap<TQString, TQVariant> vals = query.boundValues(); + for ( it = vals.begin(); it != vals.end(); ++it ) tqWarning( "Placeholder: " + it.key() + ", Value: " + (*it).toString() ); ... // Examine the bound values - bound using positional binding TQValueList<TQVariant>::ConstIterator it; - TQValueList<TQVariant> list = query.boundValues().values(); + TQValueList<TQVariant> list = query.boundValues().values(); int i = 0; - for ( it = list.begin(); it != list.end(); ++it ) + for ( it = list.begin(); it != list.end(); ++it ) tqWarning( "Placeholder pos: %d, Value: " + (*it).toString(), i++ ); ... -- cgit v1.2.3