Android之使用SQLite数据库

创建数据库

Android系统推荐使用SQLiteOpenHelper的子类创建数据库,继承SQLiteOpenHelper并重写onCreate()和onUpgrade()方法。构造方法中通过super()调用父类的构造方法。

//创建数据库必须继承SQLiteOpenHelper类
    //且重写onCreate()和onUpgrade()方法
    class MyHelper extends SQLiteOpenHelper {
        public MyHelper(Context context) {
            //参数分别是:上下文,库民,游标和版本
            //注意:版本必须一致,只能往高版本更新,不能降低版本
            super(context, "itcast.db", null, 1);
        }

        //数据库第一次创建时调用
        @Override
        public void onCreate(SQLiteDatabase db) {
            //初始化数据库表结构,执行创建表的语句
            db.execSQL("CREATE TABLE information(_id INTEGER PRIMARY KEY AUTOINCREMENT, name VARCHAR(20),  phone VARCHAR(20))");
        }

        //升级版本时调用
        @Override
        public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
        }
    }
插入数据

在itcast.db数据库的information表为例,通过getWritableDatabase()取得SQLiteDatabse对象,在获得ContentValues对象将数据添加到给对象中,最后调用inser()将数据插入到information表中。

public void insert (String name,String price){
    SQLiteDatabase db = helper.getWritableDatabase();//获取可读写SQLiteDatabse对象
    ContentValues values = new ContentValues();      // 创建ContentValues对象
    values.put("name",name);                         // 将数据添加到ContentValues对象
    values.put("price",price);
    long id = db.insert("information",null,values);  //插入一条数据到information表
    db.close();                                      //关闭数据库(一定要关闭)
}
修改数据

通过SQLiteDatabse对象调用update()方法修改表中数据

public int update(String name,String price){
    SQLiteDatabase db = helper.getWritableDatabase();//获取可读写SQLiteDatabse对象
    ContentValues values = new ContentValues();      // 创建ContentValues对象
    values.put("price",price);
    int number = db.update("information",values,"name=?",new String[]{name});
    //(表名,ContentValues对象,可选的where语句,where语句的?的值)
    db.close();
    return number;
}
删除数据

删除数据是不需要使用ContentValues添加参数,而是用一个字符串数组添加。

public int delete(long id){
    SQLiteDatabase db = helper.getWritableDatabase();//获取可读写SQLiteDatabse对象
    int number = db.delete("information","id=?",new String[]{id+""});
    db.close();
    return number;
}
查询数据

Cursor是游标接口,提供遍历查询的方法。在查询时用query(),返回一个行数集合Cursor。在使用完Cursor后一定要关掉,不然会内存外泄。

public boolean find(long id){
    SQLiteDatabase db = helper.getWritableDatabase();//获取可读写SQLiteDatabse对象
    Cursor cursor = db.query("information",null,"id=?",new String[]{id+""},null,null,null);
    boolean result = cursor.moveToNext();
    cursor.close();
    da.close();
    return result;
}
用execSQL();内加SQL语句对数据库进行操作
//插入
db.execSQL("insert into information (name,price) values (?,?)",new Object[]{name,price});
//修改
db.execSQL("update information set name=? where price =?",new Object[]{name,price});
//删除
db.execSQL("delete from information where id =1");
//查询
Cursor cursor = db.rawQuery("select * from person where name=?",new Object[]{name});

实例:通讯录
布局activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/beijing"
    android:paddingBottom="16dp"
    android:paddingLeft="16dp"
    android:paddingRight="16dp"
    android:paddingTop="16dp"
    tools:context=".MainActivity">
    <LinearLayout
        android:id="@+id/ll_name"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_above="@+id/ll_phone"
        android:layout_alignLeft="@+id/ll_btn"
        android:layout_alignStart="@+id/ll_btn">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="18sp"
            android:text="姓  名 :" />
        <EditText
            android:id="@+id/et_name"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textSize="16sp"
            android:hint="请输入姓名" />
    </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/ll_phone"
        android:layout_marginBottom="10dp"
        android:layout_above="@+id/ll_btn"
        android:layout_alignLeft="@+id/ll_name"
        android:layout_alignStart="@+id/ll_name">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="18sp"
            android:text="电  话 :" />
        <EditText
            android:id="@+id/et_phone"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textSize="16sp"
            android:hint="请输入手机号码" />
    </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/ll_btn"
        android:layout_centerVertical="true" >
        <Button
            android:id="@+id/btn_add"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:textSize="18sp"
            android:background="#B9B9FF"
            android:layout_marginRight="2dp"
            android:text="添加" />
        <Button
            android:id="@+id/btn_query"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:textSize="18sp"
            android:background="#DCB5FF"
            android:layout_marginRight="2dp"
            android:text="查询" />
        <Button
            android:id="@+id/btn_update"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:textSize="18sp"
            android:background="#E6CAFF"
            android:layout_marginRight="2dp"
            android:text="修改" />
        <Button
            android:id="@+id/btn_delete"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:textSize="18sp"
            android:background="#ACD6FF"
            android:text="删除" />
    </LinearLayout>
    <TextView
        android:id="@+id/tv_show"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="25dp"
        android:layout_below="@+id/ll_btn"
        android:textSize="20sp" />
</RelativeLayout>

交互MainActivity.java

public class MainActivity extends AppCompatActivity implements
        View.OnClickListener {
    MyHelper myHelper;
    private EditText mEtName;
    private EditText mEtPhone;
    private TextView mTvShow;
    private Button mBtnAdd;
    private Button mBtnQuery;
    private Button mBtnUpdate;
    private Button mBtnDelete;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        myHelper = new MyHelper(this);
        init();//初始化控件
    }
    private void init() {
        mEtName = (EditText) findViewById(R.id.et_name);
        mEtPhone = (EditText) findViewById(R.id.et_phone);
        mTvShow = (TextView) findViewById(R.id.tv_show);
        mBtnAdd = (Button) findViewById(R.id.btn_add);
        mBtnQuery = (Button) findViewById(R.id.btn_query);
        mBtnUpdate = (Button) findViewById(R.id.btn_update);
        mBtnDelete = (Button) findViewById(R.id.btn_delete);
        mBtnAdd.setOnClickListener(this);
        mBtnQuery.setOnClickListener(this);
        mBtnUpdate.setOnClickListener(this);
        mBtnDelete.setOnClickListener(this);
    }
    @Override
    public void onClick(View v) {
        String name;
        String phone;
        SQLiteDatabase db;
        ContentValues values;
        switch (v.getId()) {
            case R.id.btn_add: //添加数据
                name = mEtName.getText().toString();
                phone = mEtPhone.getText().toString();
                db = myHelper.getWritableDatabase();//获取可读写SQLiteDatabse对象
                values = new ContentValues();       // 创建ContentValues对象
                values.put("name", name);           // 将数据添加到ContentValues对象
                values.put("phone", phone);
                db.insert("information", null, values);//插入一条数据到information表
                Toast.makeText(this, "信息已添加", Toast.LENGTH_SHORT).show();
                db.close();//关闭数据库(一定要有)
                break;
            case R.id.btn_query: //查询数据
                db = myHelper.getReadableDatabase();
                Cursor cursor = db.query("information", null, null, null, null,
                        null, null);
                if (cursor.getCount() == 0) {
                    mTvShow.setText("");
                    Toast.makeText(this, "没有数据", Toast.LENGTH_SHORT).show();
                } else {
                    cursor.moveToFirst();
                    mTvShow.setText("Name :  " + cursor.getString(1) +
                            "  ;Tel :  " + cursor.getString(2));
                }
                while (cursor.moveToNext()) {
                    mTvShow.append("\n" + "Name :  " + cursor.getString(1) +
                            "  ;Tel :  " + cursor.getString(2));
                }
                cursor.close();
                db.close();
                break;
            case R.id.btn_update: //修改数据
                db = myHelper.getWritableDatabase();//获取可读写SQLiteDatabse对象
                values = new ContentValues();       // 要修改的数据
                values.put("phone", phone = mEtPhone.getText().toString());
                db.update("information", values, "name=?",
                        new String[]{mEtName.getText().toString()}); // 更新并得到行数
                //(表名,ContentValues对象,可选的where语句,where语句的?的值)
                Toast.makeText(this, "信息已修改", Toast.LENGTH_SHORT).show();
                db.close();
                break;
            case R.id.btn_delete: //删除数据
                db = myHelper.getWritableDatabase();
                db.delete("information", null, null);
                Toast.makeText(this, "信息已删除", Toast.LENGTH_SHORT).show();
                mTvShow.setText("");
                db.close();
                break;
        }
    }

    //创建数据库必须继承SQLiteOpenHelper类
    //且重写onCreate()和onUpgrade()方法
    class MyHelper extends SQLiteOpenHelper {
        public MyHelper(Context context) {
            //参数分别是:上下文,库民,游标和版本
            //注意:版本必须一致,只能往高版本更新,不能降低版本
            super(context, "itcast.db", null, 1);
        }

        //数据库第一次创建时调用
        @Override
        public void onCreate(SQLiteDatabase db) {
            //初始化数据库表结构,执行创建表的语句
            db.execSQL("CREATE TABLE information(_id INTEGER PRIMARY KEY AUTOINCREMENT, name VARCHAR(20),  phone VARCHAR(20))");
        }

        //升级版本时调用
        @Override
        public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
        }
    }
}

结果:
在这里插入图片描述在这里插入图片描述
打开data/data/包/databases可以看到itcast.db文件
在这里插入图片描述
将该地址链接到Navicat(对于可视化不能实时更新问题:十二字原则:重新覆盖保存,重新链接打开。即可看到数据更新。鉴于操作繁琐还是直接查询全部用logcat输出)
在这里插入图片描述在这里插入图片描述

  • 0
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值