会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
android开发实例
在SQLite数据库中获取新插入数据自增长的ID值(传智播客笔记)
在SQLite数据库中获取新插入数据自增长的ID值
使用last_insert_rowid()函数,例如:
SQLiteDatabase db = helper.getWritableDatabase(); db.execSQL("insert into person(name,phone,amount) values(?,?,?) ", new Object[]{person.getName(),person.getPhone(),person.getAmount()}); Cursor cursor = db.rawQuery("select last_insert_rowid() from person",null); cursor.moveToFirst(); int strid = cursor.getInt(0); Log.i("testAuto", strid+"");
posted on
2012-06-03 15:21
android开发实例
阅读(
4646
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部
导航
博客园
首页
新随笔
联系
订阅
管理
公告