You should put in onCreate this:
sqLiteDatabase.execSQL("create table" + DB_NAME + " ( _id integer primary key autoincrement, " + fieldOne + "INTEGER, " + fieldTwo + "INTEGER);");
Where fieldOne and fieldTwo are names of your table's columns. Also look here:
http://www.sqlite.org/datatype3.html