Lines Matching full:rowid
37 // keep in sync between the two tables. The internal rowid is the only part of
39 // free since sqlite always indexes the internal rowid.
228 int64 rowid = db_.GetLastInsertRowId();
230 // Add to the info table with the same rowid.
232 "INSERT INTO info (rowid, time) VALUES (?,?)"));
237 add_to_info.BindInt64(0, rowid);
252 "SELECT info.rowid "
253 "FROM info JOIN pages ON info.rowid = pages.rowid "
265 "DELETE FROM pages WHERE rowid=?"));
280 "DELETE FROM info WHERE rowid=?"));
311 "FROM pages LEFT OUTER JOIN info ON pages.rowid = info.rowid "