Android中SQLite
在Android系統中內建了一個資料庫,那就是SQLite。SQlite是一個輕量級,嵌入式的關聯式資料庫
它的運算速度非常快,佔用資源很少,通常只需要幾百KB的記憶體,因此特別適合在移動裝置上使用,SQLite不僅支援標準的SQL語法還遵循了資料庫的ACID事務,它相比於一般的資料庫快很多,甚至不需要設定使用者和密碼就能使用。正是因為Android把這個功能及其強大的資料庫內嵌到系統中,才使得本地持久化有了一次質的飛越
Android提供了一個抽象類SQLiteOpenHelper,繼承該類,並且實現onCreate和onUpgrade就能建立資料庫
onCreate是建立資料庫時呼叫,onUpgrade是升級資料庫時呼叫
首先建立一個繼承SQLiteOpenHelper的類
public class MySQLiteHelper extends SQLiteOpenHelper { private static String CREATE_TABLE_USER="create table users("+ "id integer primary key autoincrement,"+ "userid text,password text)"; private Context sContext; public MySQLiteHelper(Context context, String name, SQLiteDatabase.CursorFactory factory, int version) { super(context, name, factory, version); sContext=context; } @Override public void onCreate(SQLiteDatabase db) { db.execSQL(CREATE_TABLE_USER); Toast.makeText(sContext,"成功建立資料表",Toast.LENGTH_LONG).show(); } @Override public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { } }
在MainActivity中
public class MainActivity extends AppCompatActivity { private MySQLiteHelper sqLiteHelper; private SQLiteDatabase myDb; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Button btCreateDb=(Button)findViewById(R.id.btCreateDb); btCreateDb.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { sqLiteHelper=new MySQLiteHelper(MainActivity.this,"usersdb.db",null,1); myDb=sqLiteHelper.getWritableDatabase(); } });
即可完成建立
而所謂的升級資料庫,其實就是SQLiteOpenHelper的版本號如果比當前打,就需要onUpgrade升級,如果比當前小就需要onDowngrade
public class MySQLiteHelper extends SQLiteOpenHelper { private static String CREATE_TABLE_USER="create table users("+ "id integer primary key autoincrement,"+ "userid text,password text)"; private static String CREATE_TABLE_TYPE="create table types("+ "id integer primary key autoincrement,"+ "type_code,describe text)"; private Context sContext; public MySQLiteHelper(Context context, String name, SQLiteDatabase.CursorFactory factory, int version) { super(context, name, factory, version); sContext=context; } @Override public void onCreate(SQLiteDatabase db) { db.execSQL(CREATE_TABLE_USER); db.execSQL(CREATE_TABLE_TYPE); Toast.makeText(sContext,"成功建立資料表",Toast.LENGTH_LONG).show(); } @Override public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { db.execSQL("drop table if exists users"); db.execSQL("drop table if exists types"); onCreate(db); } }
新增資料
insert(String table,String nullColumnHack,ContentValus values)
更新資料
update(String table,ContenValues values,String whereClause,String where[]Args)
刪除資料
delete(String table,String whereClause,String[]Args)
查詢資料
query(String table,String[] columns,String selection,String[] selectionArgs,String groupBy,String having,String ordeBy,String limit)
同時也可以使用SQL命令運算元據庫,例如:
myDb.execSQL(inser into users(userid,password)valus(?,?),new String[]{name,password});
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69917874/viewspace-2680047/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- android:SQliteAndroidSQLite
- Android SQLite學習筆記AndroidSQLite筆記
- Android原生SQLite常用SQL語句AndroidSQLite
- Android 中使用 SQLite 資料庫AndroidSQLite資料庫
- android.database.sqlite.SQLiteException: no such table錯誤AndroidDatabaseSQLiteException
- android sqlite3 not found 解決總結AndroidSQLite
- Android 封裝AsyncTask操作Sqlite資料庫Android封裝SQLite資料庫
- SQLite中的表示式SQLite
- SQLite中的WHERE子句SQLite
- SQLite中的FROM子句SQLite
- SQLite中的SELECT子句SQLite
- 在 Android Studio 上除錯資料庫 ( SQLite )Android除錯資料庫SQLite
- SQLite中SELECT基本形式SQLite
- QT5中如何使用SQLiteQTSQLite
- SQLite中的運算子表示式SQLite
- Docker中SQlite的配置和掛載DockerSQLite
- SQLite中的SELECT子句使用表示式SQLite
- SQLite中的SELECT子句使用別名SQLite
- 獨家食用指南系列|Android端SQLite的淺嘗輒止AndroidSQLite
- sqlite 視覺化工具SQLite studioSQLite視覺化
- Android 原生 SQLite 資料庫的一次封裝實踐AndroidSQLite資料庫封裝
- SQLite中的SELECT子句使用萬用字元SQLite字元
- sqlite更新SQLite
- python sqlitePythonSQLite
- Sqlite學習筆記之Sqlite歷史SQLite筆記
- sqlite中存放自定義表結構的位置SQLite
- SQLite資料庫管理器:SQLPro for SQLite for MacSQLite資料庫Mac
- sqlite 學習SQLite
- SQLite學習SQLite
- SQLite簡介SQLite
- sqlite封裝SQLite封裝
- 高效操控SQLite資料庫,盡在SQLPro for SQLite for MacSQLite資料庫Mac
- SQLPro for SQLite Mac(SQLite資料庫管理工具)SQLiteMac資料庫
- pycharm中安裝和使用sqlite過程詳解PyCharmSQLite
- Python中內建資料庫!SQLite使用指南! ⛵Python資料庫SQLite
- Python資料庫模組(sqlite3,SQLite3)Python資料庫SQLite
- SQLite 命令列客戶端 sqlite3 使用指南SQLite命令列客戶端
- vapor fluent[sqlite] relationsVaporSQLite