News »Browse Articles »
SQLJet: Working With SQLite Databases in Pure Java
0
SQLJet: Working With SQLite Databases in Pure Java
SQLJet is an independent pure Java open source implementation of the SQLite RDBMS core functionality. SQLJet provides API to create, read and modify SQLite databases. Below you`ll find simple tutorial demonstrating how one could use SQLJet Library to perform basic operations with the database in the SQLite format.
SQLJet first major version (1.0.0) has been just released. For more information and most recent updates please visit SQLJet home page at http://sqljet.com/.
Tutorial Contents
This is a very simple tutorial on how to use SQLJet API to work with the database in SQLite format. The following operations are described:
Create new database and configure options
Create table and indices
Insert records
Select records in order specified by index
Lookup records matching scope or exact value
Update and delete records
Drop table and index
Full working source code of this example is available as part of SQLJet project in Subversion repository at Tutorial.java.
Create new database
Source:
http://java.dzone.com/articles/sqljet-pure-java-way-work
SQLJet first major version (1.0.0) has been just released. For more information and most recent updates please visit SQLJet home page at http://sqljet.com/.
Tutorial Contents
This is a very simple tutorial on how to use SQLJet API to work with the database in SQLite format. The following operations are described:
Create new database and configure options
Create table and indices
Insert records
Select records in order specified by index
Lookup records matching scope or exact value
Update and delete records
Drop table and index
Full working source code of this example is available as part of SQLJet project in Subversion repository at Tutorial.java.
Create new database
Source:
http://java.dzone.com/articles/sqljet-pure-java-way-work
Search News
News Categories
What's the News?
Post a link to something interesting from another site, or submit your own original writing for the Java community to read.
Most Popular News
-
How to stand out from other Java/JEE Professionals?
Published about 14-01-2009 | Rated +3 -
10 reasons IT certification will be important in 2009
Published about 05-01-2009 | Rated +2 -
The 9 hottest skills for `09
Published about 02-01-2009 | Rated +1 -
New Features in Servlets 3.0
Published about 05-01-2009 | Rated +4
Most Recent User Submitted News
- First Mobile WebKit Browser for Java Release
Submitted by Sonal | Rated 0 - Joe Darcy on JDK Compatibility Regions
Published about 31-10-2009 | Rated 0 - Manage java code quality with Open Source Sonar 1.6
Published about 27-02-2009 | Rated +1 - Java programming
Published about 09-11-2009 | Rated 0







