Quantum version 2.4.2
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.quantum.sql / src / com / quantum / util / sql / SQLStates.java
diff --git a/archive/net.sourceforge.phpeclipse.quantum.sql/src/com/quantum/util/sql/SQLStates.java b/archive/net.sourceforge.phpeclipse.quantum.sql/src/com/quantum/util/sql/SQLStates.java
new file mode 100644 (file)
index 0000000..0850412
--- /dev/null
@@ -0,0 +1,18 @@
+package com.quantum.util.sql;
+
+
+/**
+ * @author BC Holmes
+ */
+public abstract class SQLStates {
+       
+       /**
+        * The driver does not support the requested operation.  This SQL code is returned 
+        * by MS Access (and possibly others) when calling JDBC functions that are not 
+        * implemented by the driver.
+        */
+       public static final String ODBC_DRIVER_NOT_CAPABLE = "S1C00";
+
+       private SQLStates() {
+       }
+}