I\'ve been looking at the official documentation (http://developer.android.com/reference/android/database/sqlite/SQLiteDatabase.html) and cross-referencing with StackOverflo
What you want is execSQL() for inserts. Or you can do it this way:
ContentValues values = new ContentValues(); values.put ("col1", "foo"); values.put ("cols2", "bar"); getDb().insertOrThrow ("MyTable", null, values);
For queries, you can use rawQuery.