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
·

3 repository-uri

Awesome GitHub RepositoriesDatabase-Level Query Parameter Bindings

Binds named placeholders at the database instance level to reuse across queries, e.g., for schema-based sharding.

Distinct from Query Parameter Binding: Distinct from Query Parameter Binding: binds parameters at the database connection level, not URL query strings.

Explore 3 awesome GitHub repositories matching web development · Database-Level Query Parameter Bindings. Refine with filters or upvote what's useful.

Awesome Database-Level Query Parameter Bindings GitHub Repositories

Găsește cele mai bune repo-uri cu AI.Vom căuta cele mai potrivite repository-uri folosind AI.
  • go-pg/pgAvatar go-pg

    go-pg/pg

    5,785Vezi pe GitHub↗

    pg is a PostgreSQL object-relational mapper (ORM) for Go that maps Go structs to database tables and provides a fluent query builder for constructing SQL statements programmatically. At its core, it automatically generates CREATE TABLE statements from Go struct definitions using struct tags and naming conventions, and builds queries through method chaining with placeholder-based parameter binding to prevent SQL injection. The library distinguishes itself through relation-aware join generation that automatically constructs JOIN clauses for has-one, has-many, many-to-many, and polymorphic assoc

    Supports binding named placeholders at the database instance level for reuse across queries.

    Go
    Vezi pe GitHub↗5,785
  • datlechin/tableproAvatar datlechin

    datlechin/TablePro

    4,471Vezi pe GitHub↗

    TablePro is a cross-platform database management client designed for browsing, querying, and administering both SQL and NoSQL databases. It functions as a unified workspace that integrates a code-centric SQL editor with schema visualization tools, allowing developers to manage complex data models and execute queries across diverse database engines. The application distinguishes itself through an agentic AI integration layer that connects language models directly to database tools, enabling automated query generation, optimization, and error fixing with configurable approval gates. It features

    Uses named placeholders in prepared statements to bind query parameters and prevent SQL injection.

    Swift
    Vezi pe GitHub↗4,471
  • go-gorp/gorpAvatar go-gorp

    go-gorp/gorp

    3,751Vezi pe GitHub↗

    Gorp is a lightweight object-relational mapper for Go that binds structs to relational database tables. It functions as a relational data mapper and SQL dialect abstraction layer, automating the translation between application data and relational rows. The project provides a translation layer that generates vendor-specific SQL for PostgreSQL, MySQL, SQLite, Oracle, and SQL Server. It distinguishes itself by implementing optimistic locking via version columns to prevent concurrent update conflicts and providing a database schema generator to create tables and indexes from object definitions.

    Binds the results of raw SQL queries to Go slices, structs, or primitive types.

    Go
    Vezi pe GitHub↗3,751
  1. Home
  2. Web Development
  3. Query Parameters
  4. Query Parameter Binding
  5. Database-Level Query Parameter Bindings

Explorează sub-etichetele

  • Query Result BindingsMechanisms for mapping the results of SQL queries back into application-level objects or primitives. **Distinct from Database-Level Query Parameter Bindings:** Distinct from Database-Level Query Parameter Bindings: focuses on mapping returned result sets to objects rather than binding input parameters to the connection.