SQLite总结数据的增删查修

转载请注明出处,谢谢!

关于创建数据库和数据表请参考

http://blog.csdn.net/wei_chong_chong/article/details/50419550

往数据库表中添加数据:
execSQL()方法
·使用execSQL(String sql,Object[] bindArgs)方法可以执行存在变量的SQL指令
该方法并不推荐用于执行增删改查
SQLiteDatabase中定义了Insert()方法用于增加数据记录
long insert(String table, String nullColumnHack, ContentValues values)
参数1 数据表名
参数2 nullColumnHack 参数
  【
  · Insert()方法本质是根据方法的第一个,第三个参数拼接处SQL语句
如果第三个参数无效(为null或没有值),则可能导致:
insert into table_name() values ()
  · 第二个参数仅当第三个参数无效时被使用,如果第二个参数被指定为"username"且第三个参数
无效时:
insert into table_name (username) values(null)
   ·即第二个参数是为了保证SQL指令不出现语法错误而存在的,当第三个参数无误时,第二个参数没有意义
   
   】

ContentValues类:
ContentValue类以键值对去(K-V)的形式封装了SQL语句中的字段名与值对象,
其中K应为字段名,V应为对应的值,ContentValues本质是使用HashMap存储数据;

例如:
String table = "students";
String nullColumnHack = null;
ContentValues values = new ContentValues();
values.put("_name", "Mike");
values.put("_age", 28);
long id = db.insert(table, nullColumnHack, values);
如果返回-1则表示插入失败,插入成功会返回执行成功的记录的id编号

数据查询:
query()方法
参数说明:
 1.String table:表名
 2.String[] columns:被检索的字段列表;
 3.String selection:SQL语句中的where子句的值
 4.String[] selectionArgs:SQL语句中的group by子句的值
 5.String groupBy:SQL语句中的group by子句
 6.String having:SQL语句中的having 子句
 7.String orderBy:SQL语句中的order by子句
.返回值说明:
  .返回Cursor对象,内部封装了查询到的数据。
Cursor接口
.以类似JDBC中的ResultSet接口的方式存在,定义了如何保存从数据库读取的结果的接口;
·常用的方法有:
  .int getColumnIndex(String columnName):根据字段名获取该字段的索引号;
  .int getInt(int columnIndex)/float getFloat(int columnIndex)等根据字段索引获取值
  .boolean moveToFirst()等 :移动游标
  .boolean isFirst()等 :判断游标位置.


谨记!!!:
Cursor接口
.在第一次使用Cursor时,应该调用moveToXXX()系列方法确定游标的位置,然后再进行相关操作。
.常见的遍历游标的方式
//遍历Cursor方式之一
if(cursor.moveToFirst){
  do{
   //获取数据
   }while(cursor.moveToNext());


}
//遍历Cursor方式之2

for(cursor.moveToFirst(); !cursor.isAfterLast(); cursor.moveToNext()){
//获取数据
 }

·Cursor接口中定义了close()方法,开发人员在使用完Cursor后应该及
时调用该方法,以释放资源
例如
查询所有数据
public void queryAll(View v){
/*
* 查询数据库表中的所有数据

* */
long id;
String name;
int age;
Cursor cursor =db.query("students", new String[]{"_id","_name","_age"}, null, null, null, null, "_id desc");
/*该方法的返回值是一个游标,
* 最后一个参数是按照_id降序排列

* */

for(cursor.moveToFirst(); !cursor.isAfterLast();cursor.moveToNext()){
id = cursor.getLong(cursor.getColumnIndex("_id"));
name = cursor.getString(cursor.getColumnIndex("_name"));
age = cursor.getInt(cursor.getColumnIndex("_age"));
Log.d("", "_id="+id+"_name="+name+"_age="+age);
}
cursor.close();
}

例如:根据姓名查询数据:
public void queryByName(View v){
/*
* 根据姓名查询数据
* */
String name = nameEditText.getText().toString();
Cursor cursor = db.query("students", null, "_name=?", new String[]{name}, null, null, null);
if(cursor.moveToFirst()){


/*
* 在设计表时指定name唯一所以要么找不到匹配数据,要么只有唯一的一条数据
* */
long _id;
String _name;
int _age;
_id = cursor.getLong(cursor.getColumnIndex("_id"));
_name = cursor.getString(cursor.getColumnIndex("_name"));
_age = cursor.getInt(cursor.getColumnIndex("_age"));
Toast.makeText(this, "_id="+_id+"_name="+_name+"_age="+_age, 1).show();
Log.d("", "_id="+_id+"_name="+_name+"_age="+_age);
}else {
Toast.makeText(this, "没有匹配的数据", 1).show();
}


cursor.close();


}

更新和删除数据表中的数据
update()//用于修改数据表中的数据
public void update(){
ContentValues values = new ContentValues();
values.put("_age", 26);//把数据表students中名字为xiangwang的年龄更新为26
db.update("students", values, "_name=?",new String[]{"xiaowang"} );
}

delete()//删除数据

案例:

第一步:

写一个DBOpenHelper类

package com.example.sqlite_test;

import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteDatabase.CursorFactory;
import android.database.sqlite.SQLiteOpenHelper;

public class DBOpenHelper extends SQLiteOpenHelper{

	/*
	 * 重写构造方法 
	 * */
	public DBOpenHelper(Context context) {

		super(context, "tarena4.db", null, 1);
		// TODO Auto-generated constructor stub
	}

	@Override
	public void onCreate(SQLiteDatabase db) {
		// TODO Auto-generated method stub
		//创建数据库表students表
		String sql = "CREATE TABLE [students] ("
				+"[_id] INTEGER PRIMARY KEY AUTOINCREMENT,"
				+ "[_name] VARCHAR(50) UNIQUE NOT NULL,"
				+"[_age] INT NOT NULL DEFAULT 16"
				+")";


		db.execSQL(sql);
	}

	@Override
	public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
		// TODO Auto-generated method stub

	}

}

第二步在MainActivity的xml布局:


<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:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <Button
        android:id="@+id/button1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:onClick="queryAll"
        android:text="查询所有数据" />

    <EditText
        android:id="@+id/et_student_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/button1"
        android:ems="10"
        android:hint="姓名" >

        <requestFocus />
    </EditText>

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/button1"
        android:layout_toRightOf="@id/et_student_name"
        android:onClick="queryByName"
        android:text="查询" />

</RelativeLayout>

第三步:

MainActivity中

package com.example.sqlite_test;

import android.os.Bundle;
import android.app.Activity;
import android.content.ContentValues;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.util.Log;
import android.view.Menu;
import android.view.View;
import android.widget.EditText;
import android.widget.Toast;

public class MainActivity extends Activity {

	private DBOpenHelper helper;
	private SQLiteDatabase db;
	private EditText nameEditText;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		helper = new DBOpenHelper(this);
		db = helper.getReadableDatabase();
		nameEditText =(EditText) findViewById(R.id.et_student_name);
		//doinsert2();
		//update();
		delete();


		/*
		 * 数据库操作不推荐在主线程中执行,这里为了方便讲解铤而走险了
		 * 下面注释部分是使用第一种方法,不常用
		 * 因为使用这一种方法 创建数据库和数据表,如果下面的语句执行两次的话就会报错,同一个名字的数据库表(表名相同)不能多次创建会冲突
	                    所以一般使用第二种方法创建数据库和数据库表
		 * */
		//创建数据库  
		//		SQLiteDatabase db;
		//		db = openOrCreateDatabase("tarena.db", MODE_PRIVATE,null);
		//		
		//				//创建数据库表students表
		//				String sql = "CREATE TABLE [students] ("
		//						+"[_id] INTEGER PRIMARY KEY AUTOINCREMENT,"
		//						+ "[_name] VARCHAR(50) UNIQUE NOT NULL,"
		//						+"[_age] INT NOT NULL DEFAULT 16"
		//						+")";
		//		
		//		
		//				db.execSQL(sql);




	}
	public void queryAll(View v){
		/*
		 * 查询数据库表中的所有数据
		 * 
		 * */
		long id;
		String name;
		int age;
		Cursor cursor =	db.query("students", new String[]{"_id","_name","_age"}, null, null, null, null, "_id desc");
		/*该方法的返回值是一个游标,
		 * 最后一个参数是按照_id降序排列
		 * 
		 * */
		
		for(cursor.moveToFirst(); !cursor.isAfterLast();cursor.moveToNext()){
			id = cursor.getLong(cursor.getColumnIndex("_id"));
			name = cursor.getString(cursor.getColumnIndex("_name"));
			age = cursor.getInt(cursor.getColumnIndex("_age"));
			Log.d("", "_id="+id+"_name="+name+"_age="+age);
		}
		cursor.close();
	}
	public void queryByName(View v){
		/*
		 * 根据姓名查询数据
		 * */
		String name = nameEditText.getText().toString();
		Cursor cursor = db.query("students", null, "_name=?", new String[]{name}, null, null, null);
		if(cursor.moveToFirst()){

			/*
			 * 在设计表时指定name唯一所以要么找不到匹配数据,要么只有唯一的一条数据
			 * */
			long _id;
			String _name;
			int _age;
			_id = cursor.getLong(cursor.getColumnIndex("_id"));
			_name = cursor.getString(cursor.getColumnIndex("_name"));
			_age = cursor.getInt(cursor.getColumnIndex("_age"));
			Toast.makeText(this, "_id="+_id+"_name="+_name+"_age="+_age, 1).show();
			Log.d("", "_id="+_id+"_name="+_name+"_age="+_age);
		}else {
			Toast.makeText(this, "没有匹配的数据", 1).show();
		}

		cursor.close();

	}

	public void doinsert2(){
		String table = "students";
		String nullColumnHack = null;
		ContentValues values = new ContentValues();
		values.put("_name", "Mike");
		values.put("_age", 28);
		db.insert(table, nullColumnHack, values);
		values.put("_name", "xiaomiang");
		values.put("_age", 21);
		db.insert(table, nullColumnHack, values);
		values.put("_name", "xiaowang");
		values.put("_age", 20);

		long id = db.insert(table, nullColumnHack, values);
		if(id == -1){
			Toast.makeText(this, "插入失败", 1).show();

		}else {
			Toast.makeText(this, "插入成功", 1).show();
		}

	}

	public void doinsert(){
		/*不推荐的插入数据方式
		 * */
		/*
		 * 
		String sql ="INSERT INTO students (_name, _age) VALUES (?, ?)";//第一个是字段列表,第二个是值列表
		//问号对应的值:
		Object[] bindArgs = new Object[]{"Jack", 25};
		db.execSQL(sql, bindArgs);
		 */
	}
	public void update(){
		ContentValues values = new ContentValues();
		values.put("_age", 26);//把数据表students中名字为xiangwang的年龄更新为26
		db.update("students", values, "_name=?",new String[]{"xiaowang"} );
	}

	public void delete(){
		//删除数据库表students中_id为3的记录
		db.delete("students", "_id=?", new String[]{3+""});
	}

}






  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值