Android开发教程之--sql语句

本文介绍了如何使用SQLite进行基本的数据管理操作,包括创建/删除表、查询数据、插入记录、更新现有数据及删除数据等核心功能,并提供了具体的代码示例。

一、创建/删除表

String sql="Create table "+TABLE_NAME+"("+FIELD_ID+" integer primary key autoincrement,"  +FIELD_TITLE+" text );";
        db.execSQL(sql);

String sql=" DROP TABLE IF EXISTS "+TABLE_NAME;
        db.execSQL(sql);


二、查询

从表中查询数据(in)   SELECT * FROM meta where media_id in (1,2,9);


三、插入

SQLiteDatabase db=this.getWritableDatabase();
        ContentValues cv
=new ContentValues(); 
        cv.put(FIELD_TITLE, Title);
        
long row=db.insert(TABLE_NAME, null, cv);

四、更新

SQLiteDatabase db=this.getWritableDatabase();
        String where
=FIELD_ID+"=?";
        String[] whereValue
={Integer.toString(id)};
        ContentValues cv
=new ContentValues(); 
        cv.put(FIELD_TITLE, Title);
        db.update(TABLE_NAME, cv, where, whereValue);

五、删除

SQLiteDatabase db=this.getWritableDatabase();
        String where
=FIELD_ID+"=?";
        String[] whereValue
={Integer.toString(id)};
        db.delete(TABLE_NAME, where, whereValue);


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值