私は を作成していて、その時点でそれを使用しているSqlite database
ことを確認したい場合、その場所には2つのフォルダーしか存在し
ませ
ん: 、によって、database
File_Explorer
Cache
lib
database
location
LOGS
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_db__creation);
database db = new database(this);
}
// -- SqliteOpenHelper class ( extended )!
public database( Context context )
{
super(context, "New_one.db" , null , 2 );
Log.i("2nd class : constructor","tushar");
Log.i(context.getDatabasePath("New_one.db").toString(),"tushar");
//(data base location )
///data/data/com.example.database_creation/databases/New_one.db
}
public void onCreate(SQLiteDatabase db)
{
Log.i("2nd class : onCreate", "tushar");
db.execSQL("create table timerecords " +"(id integer primary key, time text, notes text)");
}
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion)
{
}