Skip to content

JorelAli/SQLiteTestPlugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

SQLiteTestPlugin

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.

BUKKIT

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();

Everything Else

Coming soon!

About

Source for Skepter's SQLite API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages