Date: Friday, November 25, 2005 @ 15:44:03
  Author: gilles
    Path: /cvsroot/carob/carob/include

Modified: DriverSocket.hpp (1.6 -> 1.7) Request.hpp (1.4 -> 1.5)
          RequestWithResultSetParameters.hpp (1.3 -> 1.4) Statement.hpp
          (1.6 -> 1.7)

Minor javadoc fixes to avoid doxygen warnings


------------------------------------+
 DriverSocket.hpp                   |    2 +-
 Request.hpp                        |    8 +-------
 RequestWithResultSetParameters.hpp |    6 ------
 Statement.hpp                      |    1 +
 4 files changed, 3 insertions(+), 14 deletions(-)


Index: carob/include/DriverSocket.hpp
diff -u carob/include/DriverSocket.hpp:1.6 carob/include/DriverSocket.hpp:1.7
--- carob/include/DriverSocket.hpp:1.6  Tue Nov 15 17:19:52 2005
+++ carob/include/DriverSocket.hpp      Fri Nov 25 15:44:03 2005
@@ -51,7 +51,7 @@
    * Convenience method to send C-style strings. Creates a wstring and sends 
it.
    * Reminder: every C-style string can be a wstring; the opposite is not true.
    */
-  const DriverSocket& DriverSocket::operator <<(const wchar_t *s) const
+  const DriverSocket& DriverSocket::operator <<(const wchar_t *) const
     throw (SocketIOException, UnexpectedException);
     
   /**
Index: carob/include/Request.hpp
diff -u carob/include/Request.hpp:1.4 carob/include/Request.hpp:1.5
--- carob/include/Request.hpp:1.4       Thu Nov 24 17:11:29 2005
+++ carob/include/Request.hpp   Fri Nov 25 15:44:03 2005
@@ -36,12 +36,6 @@
    * Creates a new <code>Request</code> object
    * 
    * @param sql the SQL statement
-   * @param nullSqlTemplate true if no SQL template
-   * @param sqlTemplate the SQL template (using ? as parameter placeholders)
-   * @param escapeProcessing Should the backend driver do escape processing
-   *          before sending to the database?
-   * @param timeoutInSeconds Timeout for this request in seconds, value 0 means
-   *          no timeout
    */
   Request(wstring sql) :
     sqlQuery(sql),
@@ -114,7 +108,7 @@
   bool              getIsReadOnly() { return isReadOnly; }
   /**
    * Sets the isReadOnly value.
-   * @param isReadOnly value to set.
+   * @param isReadOnlyPrm value to set.
    */
   void              setIsReadOnly(bool isReadOnlyPrm)
                         { isReadOnly = isReadOnlyPrm; }
Index: carob/include/RequestWithResultSetParameters.hpp
diff -u carob/include/RequestWithResultSetParameters.hpp:1.3 
carob/include/RequestWithResultSetParameters.hpp:1.4
--- carob/include/RequestWithResultSetParameters.hpp:1.3        Thu Nov 24 
16:08:05 2005
+++ carob/include/RequestWithResultSetParameters.hpp    Fri Nov 25 15:44:03 2005
@@ -31,12 +31,6 @@
    * Creates a new <code>RequestWithResultSetParameters</code> object
    * 
    * @param sql the SQL statement
-   * @param sqlTemplate the SQL template (using ? as parameter placeholders)
-   * @param nullSqlTemplate true if no SQL template
-   * @param escapeProcessing Should the backend driver do escape processing
-   *          before sending to the database?
-   * @param timeoutInSeconds Timeout for this request in seconds, value 0 means
-   *          no timeout
    */
   RequestWithResultSetParameters(wstring sql);
 
Index: carob/include/Statement.hpp
diff -u carob/include/Statement.hpp:1.6 carob/include/Statement.hpp:1.7
--- carob/include/Statement.hpp:1.6     Thu Nov 24 12:15:42 2005
+++ carob/include/Statement.hpp Fri Nov 25 15:44:03 2005
@@ -203,6 +203,7 @@
   /**
    * Constructs a Statement with the given connection. Protected access so that
    * only Connection class can create a statement
+   * @param c pointer to connection that created us
    */
   Statement(Connection* c);
   /**

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

Reply via email to