Ketai Library and SQLite
in
Contributed Library Questions
•
3 months ago
Hello,
i wrote a little sketch:
before setup:
import ketai.data.;
KetaiSQLite db;
KetaiSQLite db;
String CREATE_DB_SQL = “CREATE TABLE data ( _id INTEGER PRIMARY KEY AUTOINCREMENT, punkte INTEGER NOT NULL DEFAULT ‘0’, level INTEGER NOT NULL DEFAULT ‘0’);”;
in setup:
db = new KetaiSQLite( this); db.connect();
1