dyedgreen / deno-sqlite

Deno SQLite module
https://deno.land/x/sqlite
MIT License
409 stars 36 forks source link

Add lastInsertRowId to DB instance #60

Closed rahmanfadhil closed 4 years ago

rahmanfadhil commented 4 years ago

I'm working on an open-source ORM for Deno called Cotton. It relies on this package, and I need to have access to the last inserted row id whenever I insert a new record to the database.

It basically exposes the sqlite3_last_insert_rowid function, and the value is now accessible in the lastInsertRowId property.

Let me know if I need to do anything.