歡迎大家在這裡學習android創建數據庫表!下面是我們給大家整理出來的精彩內容。希望大家在這裡學習!
- /**
- * Called at the time to create the DB.
- * The create DB statement
- * @param the SQLite DB
- */
- @Override
- public void onCreate(SQLiteDatabase db) {
- db.execSQL(
- "create table " + TABLE_NAME + " (_id integer primary key autoincrement,
- " + " fid text not null, name text not null) ");
- }
好了,android創建數據庫表內容就給大家介紹到這裡了。希望大家繼續關注我們的網站!
相關推薦:
android清單的使用方法