I'm very new to Android, and Java.
I'm trying to create a dbHelper, dbAdapter, dbAdpter_per_table for a multi-table android application.
My DBAdapter:
package com.s.s.database;
import android.content.Context;
import android.database.SQLException;
import android.database.sqlite.SQLiteDatabase;
public class SSDatabaseAdapter {
private Context context;
private static SQLiteDatabase db;
private SSDatabaseHelper dbHelper;
public SSDatabaseAdapter(Context context) {
this.context = context;
}
public SSDatabaseAdapter open() throws SQLException {
dbHelper = new SSDatabaseHelper(context);
setDb(dbHelper.getWritableDatabase());
return this;
}
public void close() {
dbHelper.close();
}
public static SQLiteDatabase getDb() {
return db;
}
public static void setDb(SQLiteDatabase db) {
SSDatabaseAdapter.db = db; // was this.db = db;
}
}
The first of multiple dbAdapters per table: dbAdapter_table_Animal
package com.s.s.database;
import android.content.ContentValues;
import android.database.Cursor;
import android.database.SQLException;
public class SSDatabaseAdapterAnimals {
// Database fields
public static final String KEY_ROWID = "_id";
public static final String KEY_ANIMALIDENTIFICATION = "ANIMALIDENTIFICATION";
public static final String KEY_ANIMALNO = "ANIMALNO";
public static final String KEY_ANIMALNAME = "ANIMALNAME";
public static final String KEY_ANIMALDOB = "ANIMALDOB";
... shortened here
private static final String DB_TABLE = "ANIMAL";
/**
* Create a new Animal If the Animal is successfully created return the new
* rowId for that Animal, otherwise return a -1 to indicate failure.
*/
public long createAnimal(String ANIMALIDENTIFICATION, String ANIMALNO,
String ANIMALNAME,...) {
ContentValues values = createContentValues(ANIMALIDENTIFICATION,
ANIMALNO, ANIMALNAME,...);
return SSDatabaseAdapter.getDb().insert(DB_TABLE, null, values);
}
/**
* Update the Animal
*/
public boolean updateAnimal(long rowId, String ANIMALIDENTIFICATION,
String ANIMALNO, String ANIMALNAME, ...) {
ContentValues values = createContentValues(ANIMALIDENTIFICATION,
ANIMALNO, ANIMALNAME, ...);
return SSDatabaseAdapter.getDb().update(DB_TABLE, values,
KEY_ROWID + "=" + rowId, null) > 0;
} // using SSDatabaseAdapter.getDb() instead of db. as moved to
// subclass of adapter
/**
* Deletes Animal
*/
public boolean deleteAnimal(long rowId) {
return SSDatabaseAdapter.getDb().delete(DB_TABLE,
KEY_ROWID + "=" + rowId, null) > 0;
}
/**
* Return a Cursor over the list of all Animals in the database
*
* @return Cursor over all notes
*/
public Cursor fetchAllAnimals() {
return SSDatabaseAdapter.getDb().query(
DB_TABLE,
new String[] { KEY_ROWID, KEY_ANIMALIDENTIFICATION,
KEY_ANIMALNO, KEY_ANIMALNAME, ...}, null, null, null, null, null);
}
/**
* Return a Cursor positioned at the defined Animal
*/
public Cursor fetchAnimal(long rowId) throws SQLException {
Cursor mCursor = SSDatabaseAdapter.getDb().query(
true,
DB_TABLE,
new String[] { KEY_ROWID, KEY_ANIMALIDENTIFICATION,
KEY_ANIMALNO, KEY_ANIMALNAME, ... }, KEY_ROWID + "=" + rowId, null,
null, null, null, null);
if (mCursor != null) {
mCursor.moveToFirst();
}
return mCursor;
}
private ContentValues createContentValues(String ANIMALIDENTIFICATION,
String ANIMALNO, String ANIMALNAME, String ANIMALDOB,
...) {
ContentValues values = new ContentValues();
values.put(KEY_ANIMALIDENTIFICATION, ANIMALIDENTIFICATION);
values.put(KEY_ANIMALNO, ANIMALNO);
values.put(KEY_ANIMALNAME, ANIMALNAME);
values.put(KEY_ANIMALDOB, ANIMALDOB);
...
return values;
}
}
The eclipse compiler shows an error referring to the use of static here ... see comment in code below:
public static SQLiteDatabase getDb() {
return db;
}
public static void setDb(SQLiteDatabase db) {
SSDatabaseAdapter.db = db; //The static field SSDatabaseAdapter.db should be accessed in a static way.
}
For sake of being complete the main db class set up as follows:
package com.s.s.database;
import android.database.sqlite.SQLiteDatabase;
import android.util.Log;
public class SSDatabase {
// Database creation SQL statement
private static final String CREATE_TABLE_ANIMAL = "CREATE TABLE ANIMAL "
// ANIMALID is the Autoinc Primary Key so just add as _id as SQLite
// for Android requires this!! AJW 2011/12/23 10:49
+ "( _ID INTEGER PRIMARY KEY AUTOINCREMENT, "
+ "ANIMALIDENTIFICATION VARCHAR(20) UNIQUE COLLATE NOCASE , "
+ "ANIMALNO VARCHAR(10) COLLATE NOCASE , "
+ "ANIMALNAME VARCHAR(30), " + "ANIMALDOB DATE, "
... + ");";
private static final String CREATE_TABLE_ANIMALWEIGHTS = "CREATE TABLE ANIMALWEIGTHS "
+ "( _ID INTEGER PRIMARY KEY AUTOINCREMENT, " // WEIGHTID
+ "WEIGHTANIMALID INTEGER NOT NULL , "
+ "WEIGHTDATE TIMESTAMP NOT NULL , "
... + ");";
public static void onCreate(SQLiteDatabase database) {
database.execSQL(CREATE_TABLE_ANIMAL);
database.execSQL(CREATE_TABLE_ANIMALWEIGHTS);
}
public static void onUpgrade(SQLiteDatabase database, int oldVersion,
int newVersion) {
Log.w(SSDatabase.class.getName(),
"Upgrading database from version " + oldVersion + " to "
+ newVersion + ", which will destroy all old data");
database.execSQL("DROP TABLE IF EXISTS ANIMAL");
database.execSQL("DROP TABLE IF EXISTS ANIMALWEIGHTS");
onCreate(database);
}
}
db helper set up as follows:
package com.s.s.database;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
public class SSDatabaseHelper extends SQLiteOpenHelper {
private static final String DATABASE_NAME = "ss";
private static final int DATABASE_VERSION = 2; // 1=2011/12/23
public SSDatabaseHelper(Context context) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
}
// Method is called during creation of the database
@Override
public void onCreate(SQLiteDatabase database) {
SSDatabase.onCreate(database);
}
// Method is called during an upgrade of the database,
// e.g. if you increase the database version
@Override
public void onUpgrade(SQLiteDatabase database, int oldVersion,
int newVersion) {
SSDatabase.onUpgrade(database, oldVersion, newVersion);
}
}
Ok .. this is a lot, but hopefully being more complete will help. The database is coorectly created on the emulator and I've checked this by pullling it onto desktop. I have not yet accessed any data or inserted any data, so I don't know if this logic is going to work, or even if it is the ideal way of going about this. I need to access .db from dbAdapter in dbAdapter_table_animal.
Regards
Adrian Wreyford