Как извлечь строку из sqlite3 из таблицы, если у меня есть метаданные rowid (sqlite global val) из sqlite3?
ROWID в SQLite является псевдонимом «INTEGER PRIMARY KEY».
select * from myTable where foo = {the rowid value in question} (where foo is the name you have given to the integer primary key column in the CREATE TABLE statement)