@Override
public void onCreate(SQLiteDatabase db)
{
try{
db.execSQL(\"create table \" + NotificationManager.getUserSt
First of all I would recommend using android.util.Log for logging exceptions in Android.
Second - I suspect you have tables with wrong names created. Your error says query can't find "log", but I see you make some concatenation in "CREATE" statement. That may be the reason.
You can check what is actually created for you. By viewing the sqlite base created.
You can try:
adb shellcd /data/data//databases sqlite3 .tables