Date: Monday, March 13, 2006 @ 19:20:21
  Author: marc
    Path: /cvsroot/carob/carob/include

Modified: CarobException.hpp (1.40 -> 1.41) DriverResultSet.hpp (1.36 ->
          1.37)

Moved NullValueException to DriverResultSet.hpp


---------------------+
 CarobException.hpp  |   13 -------------
 DriverResultSet.hpp |   15 +++++++++++++++
 2 files changed, 15 insertions(+), 13 deletions(-)


Index: carob/include/CarobException.hpp
diff -u carob/include/CarobException.hpp:1.40 
carob/include/CarobException.hpp:1.41
--- carob/include/CarobException.hpp:1.40       Mon Mar 13 19:15:49 2006
+++ carob/include/CarobException.hpp    Mon Mar 13 19:20:21 2006
@@ -261,19 +261,6 @@
   ConversionException(std::wstring s) : DriverException(s) {};
 };
 
-/**
- * Exception thrown when client tries to retrieve a value that is NULL,
- * typically via GetString() GetInt(), etc.
- */
-class NullValueException : public DriverException
-{
-public:
-  /**
-   * Constructs a NullValueException with the given message
-   * @param s error message of the exception
-   */
-  NullValueException(std::wstring s) : DriverException(s) {};
-};
 
 /**
  * Generic exception for types or feature not implemented yet.
Index: carob/include/DriverResultSet.hpp
diff -u carob/include/DriverResultSet.hpp:1.36 
carob/include/DriverResultSet.hpp:1.37
--- carob/include/DriverResultSet.hpp:1.36      Fri Mar 10 22:18:20 2006
+++ carob/include/DriverResultSet.hpp   Mon Mar 13 19:20:21 2006
@@ -64,6 +64,21 @@
 class Field;
 class TypeTag;
 class BigDecimal;
+
+/**
+ * Exception thrown when client tries to retrieve a value that is NULL,
+ * typically via GetString() GetInt(), etc.
+ */
+class NullValueException : public DriverException
+{
+public:
+  /**
+   * Constructs a NullValueException with the given message
+   * @param s error message of the exception
+   */
+  NullValueException(std::wstring s) : DriverException(s) {};
+};
+
 /**
  * A <code>ResultSet</code> provides access to a table of data generated by
  * executing a Statement. The table rows are retrieved in sequence. Within a 
row

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

Reply via email to