X-Git-Url: http://secure.phpeclipse.com 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 index 0000000..0850412 --- /dev/null +++ b/archive/net.sourceforge.phpeclipse.quantum.sql/src/com/quantum/util/sql/SQLStates.java @@ -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() { + } +}