找回密码
 注册
搜索
查看: 1362|回复: 1

[资料] 关于Android中的SQLite使用

[复制链接]
发表于 2013-7-16 15:26:46 | 显示全部楼层 |阅读模式

    首先创建数据库类:
    view sourceprint?public class DatabaseHelper extends SQLiteOpenHelper {
    private static final String DB_NAME = “mydata.db”; //数据库名称
    private static final int version = 1; //数据库版本
    public DatabaseHelper(Context context) {
    super(context, DB_NAME, null, version);
    // TODO Auto-generated constructor stub
    }
    @Override
    public void onCreate(SQLiteDatabase db) {
    String sql = “create table user(username varchar(20) not null , password varchar(60) not null );”;
    db.execSQL(sql);
    }
    @Override
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
    // TODO Auto-generated method stub
    }
    }
    SQLiteOpenHelper类介绍
    SQLiteOpenHelper是SQLiteDatabase的一个帮助类,用来管理数据库的创建和版本的更新。一般是建立一个类继承它,并实现它的onCreate和onUpgrade方法。
    方法名方法描述:
    SQLiteOpenHelper(Context context,String name,SQLiteDatabase.CursorFactory factory,int version)构造方法,一般是传递一个要创建的数据库名称那么参数
    onCreate(SQLiteDatabase db)创建数据库时调用
    onUpgrade(SQLiteDatabase db,int oldVersion , int newVersion)版本更新时调用
    getReadableDatabase()创建或打开一个只读数据库
    getWritableDatabase()创建或打开一个读写数据库

    下面来介绍调用的方法
    创建数据库:
    这里特别的地方是,通过调用了SQLiteOpenHelper类的getReadableDatabase()方法来实现创建一个数据库。
    view sourceprint?1DatabaseHelper database = new DatabaseHelper(this);//这段代码放到Activity类中才用this
    SQLiteDatabase db = null;
    db = database.getReadalbeDatabase();
    SQLiteDatabase类为我们提供了很多种方法,而较常用的方法如下:
    (返回值)方法名方法描述
    (int) delete(String table,String whereClause,String[] whereArgs)删除数据行的便捷方法
    (long) insert(String table,String nullColumnHack,ContentValues values)添加数据行的便捷方法
    (int) update(String table, ContentValues values, String whereClause, String[] whereArgs)更新数据行的便捷方法
    (void) execSQL(String sql)执行一个SQL语句,可以是一个select或其他的sql语句
    (void) close()关闭数据库
    (Cursor) query(String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit)查询指定的数据表返回一个带游标的数据集
    (Cursor) rawQuery(String sql, String[] selectionArgs)运行一个预置的SQL语句,返回带游标的数据集(与上面的语句最大的区别就是防止SQL注入)
    数据的添删改查分别可以通过两种途径来实现。
    数据的添加
    1.使用insert方法
    view sourceprint?1ContentValues cv = new ContentValues();//实例化一个ContentValues用来装载待插入的数据cv.put(“username”,“Jack Johnson”);//添加用户名
    cv.put(“password”,“iLovePopMusic”); //添加密码
    db.insert(“user”,null,cv);//执行插入操作
    2.使用execSQL方式来实现
    view sourceprint?1String sql = “insert into user(username,password) values (‘Jack Johnson','iLovePopMuisc’);//插入操作的SQL语句
    db.execSQL(sql);//执行SQL语句
    数据的删除
    view sourceprint?1String whereClause = ”username=?“;//删除的条件
    String[] whereArgs = {”Jack Johnson“};//删除的条件参数
    db.delete(”user“,whereClause,whereArgs);//执行删除
    //使用execSQL方式的实现
    view sourceprint?1String sql = ”delete from user where username='Jack Johnson‘“;//删除操作的SQL语句
    db.execSQL(sql);//执行删除操作

    数据修改
    view sourceprint?1ContentValues cv = new ContentValues();//实例化ContentValues
    cv.put(”password“,”iHatePopMusic“);//添加要更改的字段及内容
    String whereClause = ”username=?“;//修改条件
    String[] whereArgs = {”Jack Johnson“};//修改条件的参数
    db.update(”user“,cv,whereClause,whereArgs);//执行修改
    //使用execSQL方式的实现
    view sourceprint?1String sql = ”update [user] set password = 'iHatePopMusic' where username='Jack Johnson’“;//修改的SQL语句
    db.execSQL(sql);//执行修改
    数据查询
    public Cursor query(String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit)
    各参数说明:

    table:表名称
    colums:列名称数组
    selection:条件子句,相当于where
    selectionArgs:条件语句的参数数组
    groupBy:分组
    having:分组条件
    orderBy:排序类
    limit:分页查询的限制
    Cursor:返回值,相当于结果集ResultSet
    针对游标(Cursor)也提供了不少方法
    方法名称方法描述:
    getCount()总记录条数
    isFirst()判断是否第一条记录
    isLast()判断是否最后一条记录
    moveToFirst()移动到第一条记录
    moveToLast()移动到最后一条记录
    move(int offset)移动到指定的记录
    moveToNext()移动到吓一条记录
    moveToPrevious()移动到上一条记录
    getColumnIndex(String columnName)获得指定列索引的int类型值
    实现代码:
    Cursor c = db.query(”user“,null,null,null,null,null,null);//查询并获得游标
    if(c.moveToFirst()){//判断游标是否为空
    for(int i=0;i<c.getCount();i++){
    c.move(i);//移动到指定记录
    String username = c.getString(c.getColumnIndex(”username“);
    String password = c.getString(c.getColumnIndex(”password“));
    }
    }
    //通过rawQuery实现的带参数查询
    原文来自凌阳教育Android培训网,http://android.sunplusedu.com/ 转自请注明出处!
发表于 2014-2-9 21:32:36 | 显示全部楼层
支持支持,必须滴!
点评回复

使用道具 举报

高级模式
B Color Image Link Quote Code Smilies

本版积分规则

Archiver|手机版|小黑屋|52RD我爱研发网 ( 沪ICP备2022007804号-2 )

GMT+8, 2024-11-23 02:41 , Processed in 0.049571 second(s), 18 queries , Gzip On.

Powered by Discuz! X3.5

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表