How do I add data in two tables on Android in a single transaction?
I have two Client and Address tables, the latter with a foreign key referencing the client table, and it must be registered in a single transaction. I know that MySQL has the LAST_INSERT_ROWID();
function. And in Android SQLite how do I?