在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+"");


你可能感兴趣的:(在SQLite数据库中获取新插入数据自增长的ID值(传智播客笔记))