awesome-repositories.com
Blog
awesome-repositories.com

Descoperă cele mai bune repository-uri open source cu căutare AI.

ExploreazăCăutări recomandateAlternative open-sourceSoftware self-hostedBlogHartă site
ProiectDespreCum realizăm clasamentulPresăServer MCP
LegalConfidențialitateTermeni
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

5 repository-uri

Awesome GitHub RepositoriesInserted Record Retrievers

Mechanisms for returning newly created row data immediately after insertion.

Distinct from Record Insertion: Distinct from standard insertion: focuses on the retrieval of the resulting record state rather than just the act of inserting.

Explore 5 awesome GitHub repositories matching data & databases · Inserted Record Retrievers. Refine with filters or upvote what's useful.

Awesome Inserted Record Retrievers GitHub Repositories

Găsește cele mai bune repo-uri cu AI.Vom căuta cele mai potrivite repository-uri folosind AI.
  • diesel-rs/dieselAvatar diesel-rs

    diesel-rs/diesel

    14,021Vezi pe GitHub↗

    This project is a type-safe database toolkit and object-relational mapper designed to enforce structural consistency between database schemas and application code. By leveraging compile-time validation, it ensures that SQL queries and data structures remain synchronized, preventing common errors before the application executes. It provides a comprehensive framework for relational data modeling, allowing developers to define table associations and map database results directly into strongly-typed language objects. The library distinguishes itself through its focus on compile-time safety and au

    Returns values of newly created rows or specific columns immediately after an insertion operation.

    Rustmysqlormpostgresql
    Vezi pe GitHub↗14,021
  • elixir-ecto/ectoAvatar elixir-ecto

    elixir-ecto/ecto

    6,471Vezi pe GitHub↗

    Ecto is an Elixir database toolkit that maps database rows to Elixir structs and validates data changes through changesets before persistence. It provides a language-integrated query syntax for composing database queries, building them incrementally and securely with compile-time expansion into safe SQL. The toolkit connects to multiple database backends including PostgreSQL, MySQL, MSSQL, SQLite3, ClickHouse, and ETS through a pluggable adapter interface. It supports eager and lazy preloading of associated records to eliminate N+1 query problems, and can store nested data structures as embed

    Returns every row of a database table as a list of structs for bulk data access.

    Elixir
    Vezi pe GitHub↗6,471
  • tryghost/node-sqlite3Avatar TryGhost

    TryGhost/node-sqlite3

    6,417Vezi pe GitHub↗

    node-sqlite3 is a relational database client and a set of native bindings that allow Node.js applications to interact with SQLite databases. It functions as a C++ native addon, linking JavaScript to the SQLite C library to manage data stored in local files or in-memory stores. The project includes optional support for SQLCipher, enabling page-level encryption to secure local database files. The driver covers a wide range of database management capabilities, including executing SQL queries with parameter binding, managing connections to database files, and preparing statements for repeated ex

    Retrieves all matching records from a query result and returns them as a complete array.

    PLpgSQL
    Vezi pe GitHub↗6,417
  • codeigniter4/codeigniter4Avatar codeigniter4

    codeigniter4/CodeIgniter4

    5,924Vezi pe GitHub↗

    CodeIgniter is a PHP web framework built on the Model-View-Controller pattern, designed for building full-stack web applications. It provides a lightweight toolkit with minimal configuration, organizing application logic into controllers, models, and views for clean separation of concerns. The framework includes a fluent query builder for constructing SQL statements programmatically, PSR-4 autoloading with namespace mapping, and a service-based dependency injection container for managing shared class instances. The framework distinguishes itself through its comprehensive set of built-in tools

    Provides a model method to retrieve all records from a table with limit and offset support.

    PHPcodeignitercodeigniter4framework-php
    Vezi pe GitHub↗5,924
  • go-jet/jetAvatar go-jet

    go-jet/jet

    3,717Vezi pe GitHub↗

    Jet is a schema-driven code generation tool and type-safe SQL builder for Go. It introspects database schemas to automatically generate builders and data models, enabling compile-time type checking for table and column references to prevent runtime errors. The project distinguishes itself through a fluent interface that mirrors native SQL syntax, allowing for the orchestration of complex queries including common table expressions, recursive queries, and nested JSON structures. It further optimizes data retrieval by binding query outputs directly into generated Go structures or raw byte slices

    Retrieves computed values or full rows immediately after an insert operation.

    Gocockroachdbcode-completioncode-generator
    Vezi pe GitHub↗3,717
  1. Home
  2. Data & Databases
  3. Record Insertion
  4. Inserted Record Retrievers

Explorează sub-etichetele

  • All-Record RetrieversMethods for fetching every row from a database table, optionally with limit and offset. **Distinct from Inserted Record Retrievers:** Distinct from Inserted Record Retrievers: returns all existing rows, not just newly inserted ones.
  • Fake Record PersistersCreates and persists fabricated database records, returning the full saved object for test assertions. **Distinct from Inserted Record Retrievers:** Distinct from Inserted Record Retrievers: focuses on creating and persisting fake test data rather than retrieving the state of an inserted record.