News

There’s no need to install anything additional if you want to start using SQLite in Android Studio. Android provides the classes which you can use to handle your database. Android developers can ...
SQLite implements two main objects: connections and statements. I'll start by defining some safe handle wrappers for these. First up is the traits class for a connection handle: struct ...
Fortunately, SQLite provides the sqlite3_last_insert_rowid function that returns the rowid from the most recent insertion on the given connection. I can then simply add a handy rowid method to my ...