Quantum version 2.4.2
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.quantum.sql / src / com / quantum / util / sql / SQLStates.java
1 package com.quantum.util.sql;
2
3
4 /**
5  * @author BC Holmes
6  */
7 public abstract class SQLStates {
8         
9         /**
10          * The driver does not support the requested operation.  This SQL code is returned 
11          * by MS Access (and possibly others) when calling JDBC functions that are not 
12          * implemented by the driver.
13          */
14         public static final String ODBC_DRIVER_NOT_CAPABLE = "S1C00";
15
16         private SQLStates() {
17         }
18 }