class SQLite3::Database

def last_insert_row_id

instance.
Obtains the unique row ID of the last row to be inserted by this Database
def last_insert_row_id
  @driver.last_insert_rowid(@handle)
end