在SQLite数据库中获取新插入数据自增长的ID值(传智播客笔记)

前端之家收集整理的这篇文章主要介绍了在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);        
        int strid;  
        if(cursor.moveToFirst())
           strid = cursor.getInt(0);
        Log.i("testAuto",strid+"");
原文链接:https://www.f2er.com/sqlite/202005.html

猜你在找的Sqlite相关文章