Date: Monday, January 30, 2006 @ 15:47:59
  Author: marc
    Path: /cvsroot/carob/carob/include

Modified: ParameterStatement.hpp (1.9 -> 1.10) Statement.hpp (1.29 ->
          1.30)

No more forbidding a non-existent default constructor.


------------------------+
 ParameterStatement.hpp |    8 ++------
 Statement.hpp          |    5 -----
 2 files changed, 2 insertions(+), 11 deletions(-)


Index: carob/include/ParameterStatement.hpp
diff -u carob/include/ParameterStatement.hpp:1.9 
carob/include/ParameterStatement.hpp:1.10
--- carob/include/ParameterStatement.hpp:1.9    Tue Jan 24 19:37:27 2006
+++ carob/include/ParameterStatement.hpp        Mon Jan 30 15:47:59 2006
@@ -217,7 +217,8 @@
 
 protected:
   /**
-   * Constructor.
+   * Forbid construction to the rest of the world.
+   * ParameterStatements must be created by connection.
    * 
    * @param connection the instantiating connection
    * @param sqlStatement the SQL statement with ? for IN markers
@@ -237,11 +238,6 @@
                               throw (DriverException, UnexpectedException);
 
   /**
-   * Forbid construction to the rest of the world.
-   * ParameterStatements must be created by connection.
-   */
-  ParameterStatement();
-  /**
    * Forbid destruction to the rest of the world.
    * ParameterStatements must be deleted by connection.
    */
Index: carob/include/Statement.hpp
diff -u carob/include/Statement.hpp:1.29 carob/include/Statement.hpp:1.30
--- carob/include/Statement.hpp:1.29    Tue Jan 24 19:37:27 2006
+++ carob/include/Statement.hpp Mon Jan 30 15:47:59 2006
@@ -360,11 +360,6 @@
    */
   Connection*             getConnectionPtr() {return connectionPtr;}
   /**
-   * Forbid construction to the rest of the world.
-   * Statements must be created by connection.
-   */
-  Statement();
-  /**
    * Forbid destruction to the rest of the world.
    * Statements must be deleted by connection.
    * @see Connection::deleteStatement(Statement* stPtr)

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

Reply via email to