summaryrefslogtreecommitdiffstats
path: root/doc/html/tqsqlresult.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tqsqlresult.html')
-rw-r--r--doc/html/tqsqlresult.html42
1 files changed, 21 insertions, 21 deletions
diff --git a/doc/html/tqsqlresult.html b/doc/html/tqsqlresult.html
index 8acc186f4..3cc140ef8 100644
--- a/doc/html/tqsqlresult.html
+++ b/doc/html/tqsqlresult.html
@@ -111,8 +111,8 @@ Returns the driver associated with the result.
<p> Positions the result to an arbitrary (zero-based) index <em>i</em>. This
function is only called if the result is in an active state. Derived
classes must reimplement this function and position the result to the
-index <em>i</em>, and call <a href="#setAt">setAt</a>() with an appropriate value. Return TRUE
-to indicate success, or FALSE to signify failure.
+index <em>i</em>, and call <a href="#setAt">setAt</a>() with an appropriate value. Return true
+to indicate success, or false to signify failure.
<h3 class=fn>bool <a name="fetchFirst"></a>TQSqlResult::fetchFirst ()<tt> [pure virtual protected]</tt>
</h3>
@@ -121,7 +121,7 @@ to indicate success, or FALSE to signify failure.
function is only called if the result is in an active state.
Derived classes must reimplement this function and position the result
to the first record, and call <a href="#setAt">setAt</a>() with an appropriate value.
-Return TRUE to indicate success, or FALSE to signify failure.
+Return true to indicate success, or false to signify failure.
<h3 class=fn>bool <a name="fetchLast"></a>TQSqlResult::fetchLast ()<tt> [pure virtual protected]</tt>
</h3>
@@ -130,7 +130,7 @@ Return TRUE to indicate success, or FALSE to signify failure.
function is only called if the result is in an active state.
Derived classes must reimplement this function and position the result
to the last record, and call <a href="#setAt">setAt</a>() with an appropriate value.
-Return TRUE to indicate success, or FALSE to signify failure.
+Return true to indicate success, or false to signify failure.
<h3 class=fn>bool <a name="fetchNext"></a>TQSqlResult::fetchNext ()<tt> [virtual protected]</tt>
</h3>
@@ -139,7 +139,7 @@ This function is only called if the result is in an active state.
The default implementation calls <a href="#fetch">fetch</a>() with the next index.
Derived classes can reimplement this function and position the result
to the next record in some other way, and call <a href="#setAt">setAt</a>() with an
-appropriate value. Return TRUE to indicate success, or FALSE to
+appropriate value. Return true to indicate success, or false to
signify failure.
<h3 class=fn>bool <a name="fetchPrev"></a>TQSqlResult::fetchPrev ()<tt> [virtual protected]</tt>
@@ -149,35 +149,35 @@ result. This function is only called if the result is in an active
state. The default implementation calls <a href="#fetch">fetch</a>() with the previous
index. Derived classes can reimplement this function and position the
result to the next record in some other way, and call <a href="#setAt">setAt</a>() with
-an appropriate value. Return TRUE to indicate success, or FALSE to
+an appropriate value. Return true to indicate success, or false to
signify failure.
<h3 class=fn>bool <a name="isActive"></a>TQSqlResult::isActive () const<tt> [protected]</tt>
</h3>
-Returns TRUE if the result has records to be retrieved; otherwise
-returns FALSE.
+Returns true if the result has records to be retrieved; otherwise
+returns false.
<h3 class=fn>bool <a name="isForwardOnly"></a>TQSqlResult::isForwardOnly () const<tt> [protected]</tt>
</h3>
-Returns TRUE if you can only scroll forward through a result set;
-otherwise returns FALSE.
+Returns true if you can only scroll forward through a result set;
+otherwise returns false.
<h3 class=fn>bool <a name="isNull"></a>TQSqlResult::isNull ( int&nbsp;i )<tt> [pure virtual protected]</tt>
</h3>
-<p> Returns TRUE if the field at position <em>i</em> is NULL; otherwise
-returns FALSE.
+<p> Returns true if the field at position <em>i</em> is NULL; otherwise
+returns false.
<h3 class=fn>bool <a name="isSelect"></a>TQSqlResult::isSelect () const<tt> [protected]</tt>
</h3>
-Returns TRUE if the current result is from a SELECT statement;
-otherwise returns FALSE.
+Returns true if the current result is from a SELECT statement;
+otherwise returns false.
<h3 class=fn>bool <a name="isValid"></a>TQSqlResult::isValid () const<tt> [protected]</tt>
</h3>
-Returns TRUE if the result is positioned on a valid record (that
+Returns true if the result is positioned on a valid record (that
is, the result is not positioned before the first or after the
-last record); otherwise returns FALSE.
+last record); otherwise returns false.
<h3 class=fn><a href="tqsqlerror.html">TQSqlError</a> <a name="lastError"></a>TQSqlResult::lastError () const<tt> [protected]</tt>
</h3>
@@ -200,8 +200,8 @@ data retrieval. Derived classes must reimplement this function and
apply the <em>query</em> to the database. This function is called only
after the result is set to an inactive state and is positioned
before the first record of the new result. Derived classes should
-return TRUE if the query was successful and ready to be used,
-or FALSE otherwise.
+return true if the query was successful and ready to be used,
+or false otherwise.
<h3 class=fn>void <a name="setActive"></a>TQSqlResult::setActive ( bool&nbsp;a )<tt> [virtual protected]</tt>
</h3>
@@ -217,7 +217,7 @@ internal (zero-based) result index to <em>at</em>.
<h3 class=fn>void <a name="setForwardOnly"></a>TQSqlResult::setForwardOnly ( bool&nbsp;forward )<tt> [virtual protected]</tt>
</h3>
-Sets forward only mode to <em>forward</em>. If forward is TRUE only
+Sets forward only mode to <em>forward</em>. If forward is true only
<a href="#fetchNext">fetchNext</a>() is allowed for navigating the results. Forward only
mode needs far less memory since results do not have to be cached.
forward only mode is off by default.
@@ -238,8 +238,8 @@ be <a href="#reset">reset</a>() in order to execute the query on the database.
</h3>
Protected function provided for derived classes to indicate
whether or not the current statement is a SQL SELECT statement.
-The <em>s</em> parameter should be TRUE if the statement is a SELECT
-statement, or FALSE otherwise.
+The <em>s</em> parameter should be true if the statement is a SELECT
+statement, or false otherwise.
<h3 class=fn>int <a name="size"></a>TQSqlResult::size ()<tt> [pure virtual protected]</tt>
</h3>