OSDN Git Service

[maven-release-plugin] prepare for next development iteration
[xerial/sqlite-jdbc.git] / SQLiteJDBC.wiki
1 [[PageOutline]]\r
2 \r
3 = SQLite JDBC Driver =\r
4 \r
5 SQLite JDBC driver, which is developed by [wiki:leo Taro L. Saito], is an extension of [http://www.zentus.com/sqlitejdbc Zentus's SQLite JDBC driver] that enables you to access [http://sqlite.org SQLite] database files in Java codes.\r
6 \r
7 Our SQLiteJDBC library, which is developed as a part of [http://www.xerial.org Xerial project], requires no configuration, since all native libraries for Windows, Mac OS X, Linux, Soralis, etc. and the pure-java SQLite, which works in any enviroment, are assembled into a single JAR (Java Archive) file. Usage is quite simple; [#Download Download] our sqlite-jdbc library, then append the jar file to your class path. \r
8 \r
9 == What is different from Zentus's SQLite JDBC? ==\r
10 \r
11 The original Zentus's SQLite JDBC driver http://www.zentus.com/sqlitejdbc/ itself is an excellent utility for using [http://sqlite.org SQLite] databases from Java language, and our SQLiteJDBC library also relies on its implementation. However, SQLite JDBC driver's pure-java version, which totally translates c/c++ codes of SQLite into Java, is significantly slower than its native version, which uses SQLite native binaries compiled for each OS (win, mac, linux). \r
12 \r
13 On the other hand, in order to use the native version, user has to set a path to the native codes (dll, jnilib, so files, which are JNDI C programs) by using command-line arguments, e.g., -Djava.library.path=(path to the dll, jnilib, etc.), or -Dorg.sqlite.lib.path, etc. This process is error-prone, and bothersome to tell every user to set these variables. Our SQLiteJDBC library completely does away these inconveniences. \r
14 \r
15 \r
16 == Public Discussion Forum == \r
17  * Post bug reports or feature requests to [http://groups.google.com/group/xerial Xerial Public Discussion Group] \r
18 \r
19 == News ==\r
20  * 2008 October 14th: sqlite-jdbc-3.6.3 released. Compatible with SQLite 3.6.3.\r
21  * 2008 September 18th: sqlite-jdbc-3.6.2 released. Compatible with SQLite 3.6.2 and contains pure-java and native versions.\r
22  * 2008 July 17th: sqlite-jdbc-3.6.0 released. Compatible with SQLite 3.6.0, and includes both pure-java and native versions. \r
23  * 2008 July 3rd: [http://www.xerial.org/maven/repository/artifact/org/xerial/sqlite-jdbc/3.5.9-universal sqlite-jdbc-3.5.9-universal] released. This version contains both native and pure-java SQLite libraries, so it probably works in any OS environment.  \r
24 \r
25  * 2008 May 29th: Current development revision (sqlite-jdbc-3.5.9-1) can be compiled with JDK 6. No need to use JDK 1.5 for compiling SQLiteJDBC. \r
26  * 2008 May 20th: sqlite-jdbc-3.5.9 released.\r
27  * 2008 May 20th: sqlite-jdbc-3.5.8 released (corresponding to SQLite 3.5.8 and sqlite-jdbc-v047). From this release, Windows, Mac OS X, Linux (i386, amd64) and Solaris (SunOS, sparcv9) libraries are bundled into one jar file.\r
28  * 2008 May 1st: sqlite-jdbc is now in the maven central repository! [#UsingSQLiteJDBCwithMaven2 How to use SQLiteJDBC with Maven2]\r
29  * 2008 Mar. 18th: sqlite-jdbc-3.5.7 released. This version corresponds to [http://www.sqlite.org/releaselog/3_5_7.html SQLite 3.5.7].\r
30 \r
31  * 2008 Mar. 10th: sqlite-jdbc-v042 released. Corresponding to SQLite 3.5.6, which integrates FTS3 (full text search). \r
32  * 2008 Jan. 31st: sqlite-jdbc-v038.4 released.   SQLiteJDBCLoder.initialize() is no longer requried. \r
33  * 2008 Jan. 11th: The Jar files for Windows, Mac OS X and Linux are packed into a single Jar file! So, no longer need to use an OS-specific jar file.\r
34  * 2007 Dec. 31th: Upgraded to sqlitejdbc-v038\r
35 \r
36 == Download ==\r
37 Download the latest version of SQLiteJDBC from [http://www.xerial.org/maven/repository/artifact/org/xerial/sqlite-jdbc here]. \r
38  * version 3.6.3 is the latest one. \r
39   * Do not use sqlite-jdbc-v0xx.jar, which are obsolete libraries but left here for users still using these versions. \r
40 \r
41 If your are an [http://maven.apache.org Maven] user, follow the instruction described [#UsingSQLiteJDBCwithMaven2 here].\r
42 \r
43 == Supported Operating Systems ==\r
44 Since the sqlite-jdbc-3.5.9-universal, any OSs that can run Java programs are supported. The natively compiled SQLite engines will be used in the following operating systems:\r
45 \r
46  * Windows XP, Vista  (Windows, x86 architecture)\r
47  * Mac OS X 10.4 (Tiger), 10.5(Leopard) (for i386, Intel CPU machines)\r
48  * Linux i386 (Intel), amd64 (64-bit X86 Intel processor) \r
49 \r
50 In the other OSs not listed above, the pure-java SQLite is used.\r
51 \r
52 If you want to use the native library for your OS, [#BuildfromSource build the source from scratch].\r
53 \r
54 \r
55 == Usage ==\r
56 \r
57  1. Download sqlite-jdbc-(VERSION).jar from [http://www.xerial.org/maven/repository/artifact/org/xerial/sqlite-jdbc/], then append this jar file into your classpath. \r
58  1. load the JDBC driver org.sqlite.JDBC from your code. (see the example below)\r
59 \r
60  * Usage Example (Assuming sqlite-jdbc-(VERSION).jar is placed in the current directory)\r
61 {{{\r
62 > javac Sample.java\r
63 > java -classpath ".:sqlite-jdbc-(VERSION).jar" Sample \r
64 name = leo\r
65 id = 1\r
66 name = yui\r
67 id = 2\r
68 }}}\r
69  * Sample.java\r
70 {{{\r
71 #!java\r
72 import java.sql.Connection;\r
73 import java.sql.DriverManager;\r
74 import java.sql.ResultSet;\r
75 import java.sql.SQLException;\r
76 import java.sql.Statement;\r
77 \r
78 \r
79 public class Sample\r
80 {\r
81   public static void main(String[] args) throws ClassNotFoundException\r
82   {\r
83     // load the sqlite-JDBC driver using the current class loader\r
84     Class.forName("org.sqlite.JDBC");\r
85     \r
86     Connection connection = null;\r
87     try\r
88     {\r
89       // create a database connection\r
90       connection = DriverManager.getConnection("jdbc:sqlite:sample.db");\r
91       Statement statement = connection.createStatement();\r
92       statement.setQueryTimeout(30);  // set timeout to 30 sec.\r
93       \r
94       statement.executeUpdate("drop table if exists person");\r
95       statement.executeUpdate("create table person (id integer, name string)");\r
96       statement.executeUpdate("insert into person values(1, 'leo')");\r
97       statement.executeUpdate("insert into person values(2, 'yui')");\r
98       ResultSet rs = statement.executeQuery("select * from person");\r
99       while(rs.next())\r
100       {\r
101         // read the result set\r
102         System.out.println("name = " + rs.getString("name"));\r
103         System.out.println("id = " + rs.getInt("id"));\r
104       }\r
105     }\r
106     catch(SQLException e)\r
107     {\r
108       // if the error message is "out of memory", \r
109       // it probably means no database file is found\r
110       System.err.println(e.getMessage());\r
111     }\r
112     finally\r
113     {\r
114       try\r
115       {\r
116         if(connection != null)\r
117           connection.close();\r
118       }\r
119       catch(SQLException e)\r
120       {\r
121         // connection close failed.\r
122         System.err.println(e);\r
123       }\r
124     }\r
125   }\r
126 }\r
127 }}}\r
128 \r
129 The usage of SQLite-JDBC driver is the same with the original version. See http://www.zentus.com/sqlitejdbc/ for the general usage. For usage of JDBC, see  [http://www.xerial.org/trac/Xerial/wiki/WebApplication/JDBC my article] about JDBC.\r
130 \r
131 == How to Specify Database Files ==\r
132 Here is an example to select a file C:\work\mydatabase.db (in Windows)\r
133 {{{\r
134 #!java\r
135 Connection connection = DriverManager.getConnection("jdbc:sqlite:C:/work/mydatabase.db");\r
136 }}}\r
137 \r
138 A UNIX (Linux, Mac OS X, etc) file /home/leo/work/mydatabase.db\r
139 {{{\r
140 #!java\r
141 Connection connection = DriverManager.getConnection("jdbc:sqlite:/home/leo/work/mydatabase.db");\r
142 }}}\r
143 \r
144 == How to Use Memory Databases ==\r
145 SQLite supports on-memory database management, which does not create any database files. To use a memory database in your Java code, get the database connection as follows:\r
146 {{{\r
147 #!java\r
148 Connection connection = DriverManager.getConnection("jdbc:sqlite::memory:");\r
149 }}}\r
150 \r
151 == How to test the running mode: Native or Pure-Java Version? ==\r
152 {{{\r
153 #!java\r
154 import org.xerial.db.sql.sqlite.SQLiteJDBCLoader;\r
155 \r
156 // in your function ...\r
157 void test()\r
158 {\r
159   System.out.println(String.format("running in %s mode", SQLiteJDBCLoader.isNativeMode() ? "native" : "pure-java"));\r
160 }\r
161 \r
162 \r
163 }}}\r
164 \r
165 == Run in Pure-Java mode ==\r
166 \r
167 In some OS (e.g., old Linux kernel), loading native library causes JVM crashes. In this case, set sqlite.purejava=true JVM variable:\r
168 {{{\r
169  > java -Dsqlite.purejava=true -cp .:sqlite-jdbc-3.6.3.jar Sample\r
170 }}}\r
171 \r
172 Or, set this System property before loading the JDBC driver:\r
173 {{{\r
174   System.setProperty("sqlite.purejava", "true");\r
175   Class.forName("org.sqlite.JDBC");\r
176 }}}\r
177 \r
178 In this mode, sqlite-jdbc never uses native SQLite libraries.\r
179 \r
180 == How does SQLiteJDBC work? ==\r
181 \r
182 Our SQLite JDBC driver package (i.e., sqlite-jdbc-(VERSION).jar) contains three types of native SQLite libraries (sqlite-jdbc.dll, sqlite-jdbc.jnilib, sqlite-jdbc.so), each of them is compiled for Windows, Mac OS and Linux. An appropriate native library file is automatically extracted into your OS's temporary folder, when your program loads "org.sqlite.JDBC" driver.  \r
183 \r
184 == Source Codes ==\r
185  * Subversion Repository: http://www.xerial.org/svn/project/XerialJ/trunk/sqlite-jdbc/\r
186    * version 3.6.3 snapshot: http://www.xerial.org/svn/project/XerialJ/tags/sqlite-jdbc/sqlite-jdbc-3.6.3\r
187 \r
188 web viewer: http://www.xerial.org/trac/Xerial/browser/XerialJ/trunk/sqlite-jdbc\r
189 \r
190 == License ==\r
191 \r
192 This program follows the Apache License version 2.0 (http://www.apache.org/licenses/ )\r
193 That means:\r
194 \r
195 It allows you to:\r
196     * freely download and use this software, in whole or in part, for personal, company internal, or commercial purposes;\r
197     * use this software in packages or distributions that you create.\r
198 \r
199 It forbids you to:\r
200     * redistribute any piece of our originated software without proper attribution;\r
201     * use any marks owned by us in any way that might state or imply that we xerial.org endorse your distribution;\r
202     * use any marks owned by us in any way that might state or imply that you created this software in question.\r
203 \r
204 It requires you to:\r
205     * include a copy of the license in any redistribution you may make that includes this software;\r
206     * provide clear attribution to us, xerial.org for any distributions that include this software\r
207 \r
208 It does not require you to:\r
209     * include the source of this software itself, or of any modifications you may have made to it, in any redistribution you may assemble that includes it;\r
210     * submit changes that you make to the software back to this software (though such feedback is encouraged).\r
211 \r
212 See License FAQ http://www.apache.org/foundation/licence-FAQ.html for more details.\r
213 \r
214 == Using SQLiteJDBC with Maven2 ==\r
215 If you are familier with [http://maven.apache.org Maven2], add the following XML fragments into your pom.xml file. With those settings, your Maven will automatically download our SQLiteJDBC library into your local Maven repository, since our sqlite-jdbc libraries are synchronized with the [http://repo1.maven.org/maven2/org/xerial/sqlite-jdbc/ Maven's central repository]. \r
216 \r
217 {{{\r
218 #!xml\r
219   <dependencies>\r
220     <dependency>\r
221       <groupId>org.xerial</groupId>\r
222       <artifactId>sqlite-jdbc</artifactId>\r
223       <version>3.6.3</version>\r
224     </dependency>\r
225   </dependencies>\r
226 }}}\r
227 \r
228 == Using SQLiteJDBC with Tomcat6 Web Server ==\r
229 Do not include sqlite-jdbc-(version).jar in WEB-INF/lib folder of your web application package, since multiple web applications hosted by the same Tomcat server cannot load the sqlite-jdbc native library more than once. That is the specification of JNI (Java Native Interface). You will observe UnsatisfiedLinkError exception with the message "no SQLite library found".\r
230 \r
231 Work-around of this problem is to put sqlite-jdbc-(version).jar file into (TOMCAT_HOME)/lib direcotry, in which multiple web applications can share the same native library file (.dll, .jnilib, .so) extracted from this sqlite-jdbc jar file. \r
232 \r
233 If you are using Maven for your web application, set the dependency scope as 'provided', and manually put the SQLite JDBC jar file into (TOMCAT_HOME)/lib folder.\r
234 {{{\r
235     <dependency>\r
236       <groupId>org.xerial</groupId>\r
237       <artifactId>sqlite-jdbc</artifactId>\r
238       <version>3.6.3</version>\r
239       <scope>provided</scope>\r
240     </dependency>\r
241 }}}\r
242 \r
243 == Build from Source ==\r
244 \r
245 If your OS is not supported, consider to build the [#SourceCodes source] from scratch. \r
246 \r
247   * Install Java SDK (1.5 or higher) http://java.sun.com\r
248   * Install [wiki:Subversion Subversion]\r
249   * Install Maven2 (2.0.7 or higher) http://maven.apache.org\r
250      * You need to set PATH variable so as to run mvn command. Here is an example setting for maven:\r
251 {{{\r
252 export MAVEN_HOME=$HOME/local/maven-2.0.7\r
253 export PATH=$MAVEN_HOME/bin:$PATH\r
254 }}}\r
255   * Checkout the subversion repository\r
256 {{{ \r
257  svn checkout http://www.xerial.org/svn/project/XerialJ/trunk/sqlite-jdbc sqlite-jdbc\r
258 }}}\r
259   * (If necessary) set the JAVA_HOME environment variable as your JDK folder (e.g. /usr/java/jdk1.5.0_13), and PATH so that you can run the javac command.\r
260 {{{\r
261  > export JAVA_HOME=/usr/java/jdk1.5.0_13/; export PATH=$JAVA_HOME/bin:$PATH\r
262  > javac -version\r
263  javac 1.5.0_13\r
264 }}}\r
265   * Type make in the sqlite-jdbc folder:\r
266 {{{\r
267  > make \r
268 }}}\r
269   * An SQLite JDBC JAR file that can additionally support your OS is generated in target/sqlite-jdbc-(version).jar\r
270 \r
271 === Dependency Tests ===\r
272  * Windows XP (32-bit)\r
273    * dependency check\r
274 {{{\r
275 > DUMPBIN /DEPENDENTS sqlitejdbc.dll\r
276 \r
277   KERNEL32.dll\r
278   msvcrt.dll\r
279 }}}\r
280  * Mac OS X (10.4.10 Tiger ~ 10.5 Leopard)\r
281    * dependency check\r
282 {{{\r
283 > otool -L libsqlitejdbc.jnilib  \r
284 libsqlitejdbc.jnilib:\r
285         build/Darwin-i386/libsqlitejdbc.jnilib (compatibility version 0.0.0, current version 0.0.0)\r
286         /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 88.3.9)\r
287 }}}\r
288  * Linux (glibc-2.5.12)\r
289    * Dependency check\r
290 {{{\r
291 > ldd libsqlitejdbc.so    \r
292         linux-gate.so.1 =>  (0x00b45000)\r
293         libc.so.6 => /lib/i686/nosegneg/libc.so.6 (0x002dd000)\r
294         /lib/ld-linux.so.2 (0x47969000)\r
295 }}}\r
296 \r