Date: Monday, January 30, 2006 @ 22:57:35
  Author: marc
    Path: /cvsroot/carob/carob/include

Modified: ParameterStatement.hpp (1.11 -> 1.12)

doxygen fixes


------------------------+
 ParameterStatement.hpp |    6 +-----
 1 files changed, 1 insertion(+), 5 deletions(-)


Index: carob/include/ParameterStatement.hpp
diff -u carob/include/ParameterStatement.hpp:1.11 
carob/include/ParameterStatement.hpp:1.12
--- carob/include/ParameterStatement.hpp:1.11   Mon Jan 30 22:46:17 2006
+++ carob/include/ParameterStatement.hpp        Mon Jan 30 22:57:35 2006
@@ -69,7 +69,6 @@
 
   /**
    * Executes a SQL statement that returns a single ResultSet
-   * @param sql 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
    */
@@ -81,7 +80,6 @@
    * 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
    * @return either a row count, or 0 for SQL commands
    */
   int                     executeUpdate() throw (DriverException, 
SocketIOException,
@@ -103,7 +101,6 @@
   /**
    * Sets a parameter to SQL NULL.
    * @param parameterIndex the first parameter is 1, etc...
-   * @param sqlType the SQL type code defined in java.sql.Types
    */
   void                    setNull(const int parameterIndex)
                               throw (DriverException, UnexpectedException);
@@ -249,9 +246,8 @@
    * Forbid construction to the rest of the world.
    * ParameterStatements must be created by connection.
    * 
-   * @param connection the instantiating connection
+   * @param c the instantiating connection
    * @param sqlStatement the SQL statement with ? for IN markers
-   * @param driver the Driver used to create connections
    */
   ParameterStatement(Connection *c, const std::wstring &sqlStatement);
 

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

Reply via email to