database - How to retrieve the last autoincremented ID from a SQLite table?
sqliteI have a table Messages with columns ID (primary key, autoincrement) and Content (text). I have a table Users with columns username (primary key, text) and Hash. A message is sent by one Sender (us…