我創建一個Sqlite database
,當我想看看,當時使用File_Explorer
database
,我沒有得到它在該位置只有兩個文件夾都存在有: Cache
, lib
,但database
文件夾不存在在那裏,但問題是,我得到它的location
也由LOGS
,無法看到SQLite數據庫在我的Android的FileExplore
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)
{
}
運行代碼在模擬器和嘗試 – 2013-04-05 05:38:44
是數據庫中創建? – Riskhan 2013-04-05 05:44:26
如果你的設備是根源的,那麼可以繼續在eclipse中從文件瀏覽器查看數據庫的db,否則在模擬器中運行。 – 2013-04-05 05:54:42