Source for Skepter's SQLite API
Simply put, my SQLite API is designed to help people who require SQLite for databases when creating bukkit plugins. It is created for support for that only, but should be compatible with other services as required.
To start off (with eclipse), download the files (com.droppages.Skepter.SQL) and add it to your JavaProject. From there, you can continue your project. It is crutial to add these lines of code into your Main class:
public SQLite sqlite;
This goes in your onEnable();
File file = new File(getDataFolder().getAbsolutePath(), "file.db");
sqlite = new SQLite(file);
try {
sqlite.open();
This goes in your onDisable();
sqlite.close();
Coming soon!