萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> 安卓開發 >> android創建數據庫表的方法

android創建數據庫表的方法

歡迎大家在這裡學習android創建數據庫表!下面是我們給大家整理出來的精彩內容。希望大家在這裡學習!

  1.   /**
  2.      * Called at the time to create the DB.
  3.      * The create DB statement
  4.      * @param the SQLite DB
  5.      */
  6.     @Override
  7.     public void onCreate(SQLiteDatabase db) {
  8.         db.execSQL(
  9.                 "create table " + TABLE_NAME + " (_id integer primary key autoincrement, 
  10. " + " fid text not null, name text not null) ");
  11.     }

好了,android創建數據庫表內容就給大家介紹到這裡了。希望大家繼續關注我們的網站!

相關推薦:

android清單的使用方法

copyright © 萬盛學電腦網 all rights reserved