summaryrefslogtreecommitdiffstats
path: root/doc/html/tqsqlquery.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-05 19:02:23 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-05 19:02:23 +0900
commit1f0ce8533cc837aa2d4155b5fc17d2004bed0197 (patch)
treed62f4174c0e58e1aa895fc71484d068b614cd6de /doc/html/tqsqlquery.html
parent8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (diff)
downloadtqt-1f0ce853.tar.gz
tqt-1f0ce853.zip
Rename template library nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tqsqlquery.html')
-rw-r--r--doc/html/tqsqlquery.html10
1 files changed, 5 insertions, 5 deletions
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 <em>placeholder</em>.
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Returns the value for the placeholder at position <em>pos</em>.
-<h3 class=fn><a href="ntqmap.html">TQMap</a>&lt;TQString,&nbsp;TQVariant&gt; <a name="boundValues"></a>TQSqlQuery::boundValues () const
+<h3 class=fn><a href="tqmap.html">TQMap</a>&lt;TQString,&nbsp;TQVariant&gt; <a name="boundValues"></a>TQSqlQuery::boundValues () const
</h3>
Returns a map of the bound values.
<p> 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&lt;TQString, TQVariant&gt;::ConstIterator it;
- <a href="ntqmap.html">TQMap</a>&lt;TQString, TQVariant&gt; vals = query.<a href="#boundValues">boundValues</a>();
- for ( it = vals.<a href="ntqmap.html#begin">begin</a>(); it != vals.<a href="ntqmap.html#end">end</a>(); ++it )
+ <a href="tqmap.html">TQMap</a>&lt;TQString, TQVariant&gt; vals = query.<a href="#boundValues">boundValues</a>();
+ for ( it = vals.<a href="tqmap.html#begin">begin</a>(); it != vals.<a href="tqmap.html#end">end</a>(); ++it )
<a href="ntqapplication.html#qWarning">tqWarning</a>( "Placeholder: " + it.key() + ", Value: " + (*it).toString() );
...
// Examine the bound values - bound using positional binding
TQValueList&lt;TQVariant&gt;::ConstIterator it;
- <a href="ntqvaluelist.html">TQValueList</a>&lt;TQVariant&gt; list = query.<a href="#boundValues">boundValues</a>().values();
+ <a href="tqvaluelist.html">TQValueList</a>&lt;TQVariant&gt; list = query.<a href="#boundValues">boundValues</a>().values();
int i = 0;
- for ( it = list.<a href="ntqvaluelist.html#begin">begin</a>(); it != list.<a href="ntqvaluelist.html#end">end</a>(); ++it )
+ for ( it = list.<a href="tqvaluelist.html#begin">begin</a>(); it != list.<a href="tqvaluelist.html#end">end</a>(); ++it )
<a href="ntqapplication.html#qWarning">tqWarning</a>( "Placeholder pos: %d, Value: " + (*it).toString(), i++ );
...