summaryrefslogtreecommitdiffstats
path: root/doc/html/tqsqlquery.html
diff options
context:
space:
mode:
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++ );
...