From 4d495175043c399fdca6e1bb4c74ef176fc76fb4 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 6 Aug 2025 11:29:57 +0900 Subject: Replace TRUE/FALSE with boolean values true/false - part 4 Signed-off-by: Michele Calgaro --- doc/html/tqsqlquery.html | 102 +++++++++++++++++++++++------------------------ 1 file changed, 51 insertions(+), 51 deletions(-) (limited to 'doc/html/tqsqlquery.html') diff --git a/doc/html/tqsqlquery.html b/doc/html/tqsqlquery.html index ca4e3314f..fee5aa3b7 100644 --- a/doc/html/tqsqlquery.html +++ b/doc/html/tqsqlquery.html @@ -59,7 +59,7 @@ manipulating SQL statements.
  • void setForwardOnly ( bool forward )
  • virtual bool exec ( const TQString & query )
  • virtual TQVariant value ( int i ) const
  • -
  • virtual bool seek ( int i, bool relative = FALSE )
  • +
  • virtual bool seek ( int i, bool relative = false )
  • virtual bool next ()
  • virtual bool prev ()
  • virtual bool first ()
  • @@ -98,11 +98,11 @@ statements, e.g. CREATE TABLE. It can also be used to execute database-specific commands which are not standard SQL (e.g. SET DATESTYLE=ISO for PostgreSQL).

    Successfully executed SQL statements set the query's state to -active (isActive() returns TRUE); otherwise the query's state is +active (isActive() returns true); otherwise the query's state is set to inactive. In either case, when executing a new SQL statement, the query is positioned on an invalid record; an active query must be navigated to a valid record (so that isValid() -returns TRUE) before values can be retrieved. +returns true) before values can be retrieved.

    Navigating records is performed with the following functions: