2 Repos
Operations that return the newly created record, including generated IDs, immediately after an insertion.
Distinct from Row Insertions: Distinct from general Row Insertions by focusing on the immediate retrieval of the resulting row.
Explore 2 awesome GitHub repositories matching data & databases · Returning Inserted Rows. Refine with filters or upvote what's useful.
This project is a pure JavaScript database driver for Node.js that implements the native MySQL binary protocol. It serves as a comprehensive connector for managing persistent network links to MySQL servers, enabling applications to execute queries, manage transactions, and handle complex data operations without requiring external middleware. The driver distinguishes itself through its integrated support for connection pooling and distributed database routing. It maintains managed sets of reusable network sockets to optimize resource usage under high request volumes, while simultaneously provi
Fetches auto-incremented primary key values generated by recent insert operations, including support for large numeric types.
Drift is a type-safe SQL persistence library and relational mapper that provides a structured way to map database tables to classes and execute SQL queries with build-time validation. It functions as a type-safe query builder and a wrapper for SQLite and PostgreSQL, eliminating manual result set parsing by binding query outputs to native objects. The project distinguishes itself through a build-time code generation system that produces type-safe APIs and validates raw SQL statements against database versions before execution. It features reactive query streaming, which transforms SQL queries
Adds a record to the database and immediately retrieves the resulting row with generated IDs.