学习笔记-SQLiteOpenHelper的用法
新建项目
一、新建MyDatabaseHelper类继承自SQLiteOpenHelper
package com.example.databasetest;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.widget.Toast;
import androidx.annotation.Nullable;
public class MyDatabaseHelper extends SQLiteOpenHelper {
public static final String CREATE_BOOK="create table book("
+ "id integer primary key autoincrement,"
+ "author text,"
+ "price real,"
+ "pages integer,"
+ "name text)";
private Context mContext;
public MyDatabaseHelper(@Nullable Context context, @Nullable String name, @Nullable SQLiteDatabase.CursorFactory factory, int version) {
super(context, name, factory, version);
mContext=context;
}
@Override
public void onCreate(SQLiteDatabase db) {
db.execSQL(CREATE_BOOK);
Toast.makeText(mContext,"Create succeeded",Toast.LENGTH_SHORT).show();
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
}
}
将建表语句定义成字符串常量
在onCreate方法中调用SQLiteDatabase的execSQL方法执行建表语句,并且弹出一个Toast提示创建成功
二、在布局文件activity_main.xml中加入按钮,用于创建数据库
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<Button
android:id="@+id/create_database"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Create database"
/>
</LinearLayout>
三、在MainActivity方法中
package com.example.databasetest;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class MainActivity extends AppCompatActivity {
private MyDatabaseHelper dbHelper;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
dbHelper=new MyDatabaseHelper(this,"BookStore.db",null,1);
Button createDatabase=(Button) findViewById(R.id.create_database);
createDatabase.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
dbHelper.getWritableDatabase();
}
});
}
}
在onCreate方法中构建一个MyDatabaseHelper对象,通过其构造函数的参数将数据库名指定为:BookStore.db版本号指定为:1
在按钮的点击事件中调用getWritableDatabase方法 ,当第一次点击按钮 时会创建数据库 ,再次点击发现已经存在不会再创建
四、运行结果:
五、验证数据库创建结果:
六、升级数据库
修改MyDatabaseHelper中的代码,在 onUpgrade方法中加入代码行,如果数据库总已经存在表,就将其删除,调用oncreate方法重新创建
执行onUpgrade方法:将SQLiteOpenHelper构造方法的第四个参数,当前数据库的版本号改成比1大的数即可
升级成功
六、添加数据:在布局文件中新增按钮,在按钮的点击事件中编写添加数据的逻辑
在方法中增加代码:
Button addData=(Button) findViewById(R.id.add_data);
addData.setOnClickListener(new View.OnClickListener(){
@Override
public void onClick(View v) {
SQLiteDatabase db=dbHelper.getWritableDatabase();
ContentValues values=new ContentValues();
/*开始组装第一条数据*/
values.put("name","The Da Vinci Code");
values.put("author","Dan Brown");
values.put("pages",454);
values.put("price",16.96);
db.insert("Book",null,values);//插入第一条数据
values.clear();
/*开始组装第二条数据 */
values.put("name","The Lost Symbol");
values.put("author","Dan Brown");
values.put("pages",510);
values.put("price",19.95);
db.insert("Book",null,values);//插入第二条数据
}
});
①获取SQLiteDatabase对象
②使用ContentValues对要添加的数据进行组装
运行结果:
七、更新数据
修改布局文件中的代码,增加更新数据按钮
修改活动中的代码:
Button updateData=(Button) findViewById(R.id.update_data);
updateData.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
SQLiteDatabase db=dbHelper.getWritableDatabase();
ContentValues values=new ContentValues();
values.put("price",10.99);
db.update("Book",values,"name=?",new String[]{"The Da Vinci Code"});
}
});
①构建ContentValues对象
②调用update方法,将名字为The Da Vinci Code的书价格更新为10.99
运行结果:
八、删除数据
在布局文件中添加按钮,用于删除数据
在 MainActivity添加代码行
Button deleteButton=(Button) findViewById(R.id.delete_data);
deleteButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
SQLiteDatabase db=dbHelper.getWritableDatabase();
db.delete("Book","pages > ?",new String[]{"500"});
}
});
运行结果:
九、查询数据
修改布局文件中的代码,添加按钮用于查询数据
在 MainActivity添加代码行
Button queryButton=(Button) findViewById(R.id.query_data);
queryButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
SQLiteDatabase db=dbHelper.getWritableDatabase();
/*查询book表中的所有数据*/
Cursor cursor=db.query("Book",null,null,null,null,null,null);
if (cursor.moveToFirst()){
do {
/*遍历所有Cursor对象,取出数据并且打印*/
String name=cursor.getString(cursor.getColumnIndex("name"));
String author=cursor.getString(cursor.getColumnIndex("author"));
int pages=cursor.getInt(cursor.getColumnIndex("pages"));
double price=cursor.getDouble(cursor.getColumnIndex("price"));
Log.d("MainActivity","book name is "+name);
Log.d("MainActivity", "book author is"+author);
Log.d("MainActivity","book pages is"+pages);
Log.d("MainActivity","book price is"+price);
}while (cursor.moveToNext());
}
cursor.close();
}
});
①在按钮的点击事件中调用SQLiteDatabase的query方法查询数据
②查询结束后,得到Cursor对象
③调用moveToFirst方法将数据的指针移到第一行的位置
④使用Log方式将数据打印出来
⑤调用close方法关闭cursor
运行结果:
本文地址:https://blog.csdn.net/lcnana/article/details/109631198