KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > nilostep > xlsql > jdbc > Constants


1 /*(Header: NiLOSTEP / xlSQL)
2
3     Copyright (C) 2004 NiLOSTEP Information Sciences, all
4     rights reserved.
5     
6     This program is licensed under the terms of the GNU
7     General Public License.You should have received a copy
8     of the GNU General Public License along with this
9     program;
10 */

11
12 package com.nilostep.xlsql.jdbc;
13
14 /**
15  * Global xlSQL constants
16  *
17  * @version $Revision: 1.1 $
18  * @author Jim Caprioli
19  */

20 public interface Constants {
21     //~ Static variables/initializers ··········································
22
public static final String JavaDoc APP = "xlSQL> ";
23     
24     public static final String JavaDoc DRIVER_NAME = "NiLOSTEP/xlSQL Excel JDBC Driver";
25     public static final String JavaDoc DRIVER_RELEASE = "alpha:Y5";
26     public static final String JavaDoc DRIVER_CLASS = "com.nilostep.xlsql.jdbc.jdbcDriverXls";
27     public static final int MAJOR_VERSION = 0;
28     public static final int MINOR_VERSION = 0;
29     public static final String JavaDoc URL_PFX_XLS = "jdbc:nilostep:excel:";
30     public static final String JavaDoc URL_PFX_CSV = "jdbc:nilostep:csv:";
31     public static final boolean JDBC_COMPLIANT = false;
32     public static final int JDBC_MAJOR_VERSION = 3;
33     public static final int JDBC_MINOR_VERSION = 0;
34     
35     public static final int MAJOR_XLSQL_VERSION = 0;
36     public static final int MINOR_XLSQL_VERSION = 0;
37     public static final String JavaDoc XLSQL = "xlSQL (with HSQL database engine)";
38     public static final String JavaDoc XLSQL_RELEASE = "pre-alpha:X0";
39     
40     public static final String JavaDoc URL = "url";
41 }
Popular Tags