diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-11-26 15:11:22 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-11-26 15:11:22 +0900 |
| commit | b87533f9904c10f24d6b2e8177c00944e3efe15b (patch) | |
| tree | c1106a381c851b51e86004698457aef1211b77be /doc/html/ntqsqlrecord.html | |
| parent | 894037c3e68e1573a34183d936171f8cda5085f3 (diff) | |
| download | tqt-r14.1.x.tar.gz tqt-r14.1.x.zip | |
Replace TRUE/FALSE with boolean values true/false - part 4r14.1.x
Manually cherry-picked from commit 4d495175
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/ntqsqlrecord.html')
| -rw-r--r-- | doc/html/ntqsqlrecord.html | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/doc/html/ntqsqlrecord.html b/doc/html/ntqsqlrecord.html index 9d13a2470..74643ef77 100644 --- a/doc/html/ntqsqlrecord.html +++ b/doc/html/ntqsqlrecord.html @@ -67,7 +67,7 @@ set of database fields. <li class=fn>bool <a href="#isEmpty"><b>isEmpty</b></a> () const</li> <li class=fn>bool <a href="#contains"><b>contains</b></a> ( const TQString & name ) const</li> <li class=fn>virtual void <a href="#clear"><b>clear</b></a> ()</li> -<li class=fn>virtual void <a href="#clearValues"><b>clearValues</b></a> ( bool nullify = FALSE )</li> +<li class=fn>virtual void <a href="#clearValues"><b>clearValues</b></a> ( bool nullify = false )</li> <li class=fn>uint <a href="#count"><b>count</b></a> () const</li> <li class=fn>virtual TQString <a href="#toString"><b>toString</b></a> ( const TQString & prefix = TQString::null, const TQString & sep = "," ) const</li> <li class=fn>virtual TQStringList <a href="#toStringList"><b>toStringList</b></a> ( const TQString & prefix = TQString::null ) const</li> @@ -114,15 +114,15 @@ Removes all the record's fields. <p> <p>See also <a href="#clearValues">clearValues</a>(). <p>Reimplemented in <a href="ntqsqlcursor.html#clear">TQSqlCursor</a>. -<h3 class=fn>void <a name="clearValues"></a>TQSqlRecord::clearValues ( bool nullify = FALSE )<tt> [virtual]</tt> +<h3 class=fn>void <a name="clearValues"></a>TQSqlRecord::clearValues ( bool nullify = false )<tt> [virtual]</tt> </h3> Clears the value of all fields in the record. If <em>nullify</em> is -TRUE, (the default is FALSE), each field is set to NULL. +true, (the default is false), each field is set to NULL. <h3 class=fn>bool <a name="contains"></a>TQSqlRecord::contains ( const <a href="ntqstring.html">TQString</a> & name ) const </h3> -Returns TRUE if there is a field in the record called <em>name</em>; -otherwise returns FALSE. +Returns true if there is a field in the record called <em>name</em>; +otherwise returns false. <h3 class=fn>uint <a name="count"></a>TQSqlRecord::count () const </h3> @@ -161,33 +161,33 @@ exists at <em>pos</em>, it is removed. <h3 class=fn>bool <a name="isEmpty"></a>TQSqlRecord::isEmpty () const </h3> -Returns TRUE if there are no fields in the record; otherwise -returns FALSE. +Returns true if there are no fields in the record; otherwise +returns false. <h3 class=fn>bool <a name="isGenerated"></a>TQSqlRecord::isGenerated ( const <a href="ntqstring.html">TQString</a> & name ) const </h3> -Returns TRUE if the record has a field called <em>name</em> and this -field is to be generated (the default); otherwise returns FALSE. +Returns true if the record has a field called <em>name</em> and this +field is to be generated (the default); otherwise returns false. <p> <p>See also <a href="#setGenerated">setGenerated</a>(). <h3 class=fn>bool <a name="isGenerated-2"></a>TQSqlRecord::isGenerated ( int i ) const </h3> This is an overloaded member function, provided for convenience. It behaves essentially like the above function. -<p> Returns TRUE if the record has a field at position <em>i</em> and this -field is to be generated (the default); otherwise returns FALSE. +<p> Returns true if the record has a field at position <em>i</em> and this +field is to be generated (the default); otherwise returns false. <p> <p>See also <a href="#setGenerated">setGenerated</a>(). <h3 class=fn>bool <a name="isNull"></a>TQSqlRecord::isNull ( const <a href="ntqstring.html">TQString</a> & name ) const </h3> -Returns TRUE if the field called <em>name</em> is NULL or if there is no -field called <em>name</em>; otherwise returns FALSE. +Returns true if the field called <em>name</em> is NULL or if there is no +field called <em>name</em>; otherwise returns false. <p> <p>See also <a href="#position">position</a>(). <h3 class=fn>bool <a name="isNull-4"></a>TQSqlRecord::isNull ( int i ) const </h3> This is an overloaded member function, provided for convenience. It behaves essentially like the above function. -<p> Returns TRUE if the field <em>i</em> is NULL or if there is no field at -position <em>i</em>; otherwise returns FALSE. +<p> Returns true if the field <em>i</em> is NULL or if there is no field at +position <em>i</em>; otherwise returns false. <p> <p>See also <a href="#fieldName">fieldName</a>(). <h3 class=fn><a href="ntqsqlrecord.html">TQSqlRecord</a> & <a name="operator-eq"></a>TQSqlRecord::operator= ( const <a href="ntqsqlrecord.html">TQSqlRecord</a> & other ) @@ -210,7 +210,7 @@ happens. <h3 class=fn>void <a name="setGenerated"></a>TQSqlRecord::setGenerated ( const <a href="ntqstring.html">TQString</a> & name, bool generated )<tt> [virtual]</tt> </h3> Sets the generated flag for the field called <em>name</em> to <em>generated</em>. If the field does not exist, nothing happens. Only -fields that have <em>generated</em> set to TRUE are included in the SQL +fields that have <em>generated</em> set to true are included in the SQL that is generated, e.g. by <a href="ntqsqlcursor.html">TQSqlCursor</a>. <p> <p>See also <a href="#isGenerated">isGenerated</a>(). @@ -259,7 +259,7 @@ e.g. a table name, all fields are prefixed in the form: </h3> Returns a list of all the record's field names, each having the prefix <em>prefix</em>. -<p> Note that fields which have generated set to FALSE are <em>not</em> +<p> Note that fields which have generated set to false are <em>not</em> included. (See <a href="#isGenerated">isGenerated</a>()). If <em>prefix</em> is supplied, e.g. a table name, all fields are prefixed in the form: <p> "<em>prefix</em>.<fieldname>" |
