Date: Tuesday, March 21, 2006 @ 18:43:16
  Author: marc
    Path: /cvsroot/carob/carob/include

Modified: Statement.hpp (1.38 -> 1.39)

Doxygened the side-effect of execute[ [Query|Update](sqlquery) methods.


---------------+
 Statement.hpp |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)


Index: carob/include/Statement.hpp
diff -u carob/include/Statement.hpp:1.38 carob/include/Statement.hpp:1.39
--- carob/include/Statement.hpp:1.38    Tue Mar 21 18:17:11 2006
+++ carob/include/Statement.hpp Tue Mar 21 18:43:16 2006
@@ -84,7 +84,7 @@
   //connections
   /**
    * Execute a SQL statement that may return multiple results.
-   * @param sql any SQL statement
+   * @param sql SQL statement to set before executing
    * @return true if the result is a ResultSet or false if it is an integer
    * @throw DriverException if the statement is closed
    */
@@ -97,7 +97,8 @@
 
   /**
    * Executes a SQL statement that returns a single ResultSet
-   * @param sql typically a static SQL <code>SELECT</code> statement
+   * @param sql SQL statement to set before executing. Typically a
+   * static SQL <code>SELECT</code> statement
    * @return a ResulSet pointer that contains the data produced by the query
    * @throw DriverException if the statement is closed
    */
@@ -111,7 +112,7 @@
   /**
    * Execute a SQL INSERT, UPDATE or DELETE statement. In addition SQL
    * statements that return nothing such as SQL DDL statements can be executed
-   * @param sql a SQL statement
+   * @param sql SQL statement to set before executing
    * @return either a row count, or 0 for SQL commands
    */
   int                     executeUpdate(std::wstring sql)

_______________________________________________
Carob-commits mailing list
[email protected]
https://forge.continuent.org/mailman/listinfo/carob-commits

Reply via email to