如何使用ContentValues对数据库进行相关操作

52次阅读
没有评论

共计 4413 个字符,预计需要花费 12 分钟才能阅读完成。

本篇内容介绍了“如何使用 ContentValues 对数据库进行相关操作”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让丸趣 TV 小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

 

在 main.xml 中:

?xml version= 1.0 encoding= utf-8 ?

LinearLayout xmlns:android= http://schemas.android.com/apk/res/android

  android:layout_width= fill_parent

  android:layout_height= fill_parent

  android:orientation= vertical

  android:gravity= center_horizontal

  Button

  android:id= @+id/insertBut

  android:layout_marginTop= 8dp

  android:layout_width= wrap_content

  android:layout_height= wrap_content

  android:text= 增加数据 /

  Button

  android:id= @+id/updateBut

  android:layout_width= wrap_content

  android:layout_height= wrap_content

  android:text= 修改数据 /

  Button

  android:id= @+id/deleteBut

  android:layout_width= wrap_content

  android:layout_height= wrap_content

  android:text= 删除数据 /

/LinearLayout

创建数据库的建表操作类 Mytab.java

package com.li.sqlite;

import android.content.ContentValues;

import android.database.sqlite.SQLiteDatabase;

public class Mytab {

  private static final String TABLENAME = mytab // 表示要操作的数据表名称

  private SQLiteDatabase db = null; // 数据库操作

  public Mytab(SQLiteDatabase db) { 

  this.db = db;

  }

  public void insert(String name,String birthday) {  // 向表中增加数据

  ContentValues cv = new ContentValues();

  cv.put(name ,name);

  cv.put(birthday ,birthday);

  this.db.insert(TABLENAME, null, cv);

  this.db.close() ;

  }

  public void update(int id, String name, String birthday) {  // 修改表的数据

  ContentValues cv = new ContentValues();

  cv.put(name ,name);

  cv.put(birthday ,birthday);

  String whereCaluse = id=?

  String whereArgs[] = new String[]{String.valueOf(id)};

  this.db.update(TABLENAME, cv, whereCaluse, whereArgs);

  this.db.close() ;

  }

  public void delete(int id) {  // 删除表的数据

  String whereCaluse = id=?

  String whereArgs[] = new String[]{String.valueOf(id)};

  this.db.delete(TABLENAME, whereCaluse, whereArgs);

  this.db.close() ;

  }

}

在 MyDatabaseHelper.java 类中:

package com.li.sqlite;

// 数据库的辅助操作类

import android.content.Context;

import android.database.sqlite.SQLiteDatabase;

import android.database.sqlite.SQLiteOpenHelper;

public class MyDatabaseHelper extends SQLiteOpenHelper {

  private static final String DATABASENAME = liyewen.db

  private static final int DATABASERVERSION = 1 ;  // 设置数据库的版本

  private static final String TABLENAME = mytab

  public MyDatabaseHelper(Context context) {  // 用户最关心的也肯定只是 Context

  super(context, DATABASENAME, null, DATABASERVERSION);

  }

  @Override

  public void onCreate(SQLiteDatabase db) {// 创建数据表

  String sql = CREATE TABLE + TABLENAME + (

  + id  INTEGER  PRIMARY KEY ,   // 在 SQLite 中设置为 Integer、PRIMARY KEY 则 ID 自动增长

  + name   VARCHAR(50)   NOT NULL ,

  + birthday DATE NOT   NULL + )

  db.execSQL(sql) ;  // 执行 SQL

  System.out.println(****************** 创建:onCreate()。

  }

  @Override

  public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {

  String sql = DROP TABLE IF EXISTS + TABLENAME ;

  db.execSQL(sql) ;

  System.out.println(****************** 更新:onUpgrade()。

  this.onCreate(db) ;

  }

}

在 MySQLiteDemo.java 中:

package com.li.sqlite;

import android.app.Activity;

import android.database.sqlite.SQLiteOpenHelper;

import android.os.Bundle;

import android.view.View;

import android.view.View.OnClickListener;

import android.widget.Button;

public class MySQLiteDemo extends Activity {

  private Button inserBut = null;

  private Button updateBut = null;

  private Button deleteBut = null;

  private SQLiteOpenHelper helper = null;

  private Mytab mtab = null;

  private static int count = 0;

  @Override

  public void onCreate(Bundle savedInstanceState) {

  super.onCreate(savedInstanceState);

  super.setContentView(R.layout.main);

  this.inserBut = (Button)super.findViewById(R.id.insertBut);

  this.updateBut = (Button)super.findViewById(R.id.updateBut);

  this.deleteBut = (Button)super.findViewById(R.id.deleteBut);

  this.helper = new MyDatabaseHelper(this);

  this.inserBut.setOnClickListener(new InertOnClickListenerImpl());

  this.updateBut.setOnClickListener(new UpdateOnClickListenerImpl());

  this.deleteBut.setOnClickListener(new DeleteOnClickListenerImpl());

  }

  private class InertOnClickListenerImpl implements OnClickListener{

  public void onClick(View v) {

  MySQLiteDemo.this.mtab = new Mytab(

  MySQLiteDemo.this.helper.getWritableDatabase());

  MySQLiteDemo.this.mtab.insert(liyewen + count++, 1988-08-16

  }

  }

  private class UpdateOnClickListenerImpl implements OnClickListener{

  public void onClick(View v) {

  MySQLiteDemo.this.mtab = new Mytab(

  MySQLiteDemo.this.helper.getWritableDatabase());

  MySQLiteDemo.this.mtab.update(72, update , 1988/8/15

  }

  }

  private class DeleteOnClickListenerImpl implements OnClickListener{

  public void onClick(View v) {

  MySQLiteDemo.this.mtab = new Mytab(

  MySQLiteDemo.this.helper.getWritableDatabase());

  MySQLiteDemo.this.mtab.delete(73);

  }

  }

}

“如何使用 ContentValues 对数据库进行相关操作”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注丸趣 TV 网站,丸趣 TV 小编将为大家输出更多高质量的实用文章!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-07-28发表,共计4413字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)