awesome-repositories.com
Blog
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoAcerca deCómo clasificamosPrensaServidor MCP
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

5 repositorios

Awesome GitHub RepositoriesSQL Literal Escaping

Utilities for escaping string values to be safely embedded in SQL statements.

Distinct from SQL Utilities: Focuses specifically on string literal quoting and escaping for SQL rather than general SQL helper utilities

Explore 5 awesome GitHub repositories matching data & databases · SQL Literal Escaping. Refine with filters or upvote what's useful.

Awesome SQL Literal Escaping GitHub Repositories

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • lib/pqAvatar de lib

    lib/pq

    9,903Ver en GitHub↗

    pq is a PostgreSQL driver for Go that implements the standard database/sql interface. It serves as a connection library and protocol implementation that translates application data types into the binary and text formats required by PostgreSQL. The project provides specialized utilities for high-performance data ingestion using bulk data loading and a dedicated bulk data importer. It also features an implementation for listening to asynchronous server notifications and provides tools for connection load balancing across multiple hosts and ports. The driver covers a broad surface of database i

    Wraps string values in single quotes and escapes special characters for safe embedding in SQL statements.

    Go
    Ver en GitHub↗9,903
  • doctrine/dbalAvatar de doctrine

    doctrine/dbal

    9,699Ver en GitHub↗

    This project is a SQL database abstraction layer that provides a consistent object-oriented interface for interacting with multiple relational database systems. It includes a driver wrapper to standardize connections and result sets, a fluent query builder for constructing portable SQL statements, and a type mapper for converting database-specific data types into native application types and vice versa. The library enables programmatic schema management through a schema manager that can introspect database metadata, model structures as objects, and generate the SQL required to migrate between

    Quotes and escapes string values to ensure they are treated as literals within database statements.

    PHPdatabaseibm-db2mariadb
    Ver en GitHub↗9,699
  • go-xorm/xormAvatar de go-xorm

    go-xorm/xorm

    6,628Ver en GitHub↗

    xorm is a relational mapper and object-relational mapping tool for Go. It translates Go structures into SQL queries and maps database rows back into native objects, providing a multi-dialect database driver that supports MySQL, PostgreSQL, SQLite, Oracle, SQL Server, and TiDB. The project features a read-write splitting manager that routes modification requests to a primary database and read requests to replicas. It includes a database schema synchronizer to automatically align table structures and indexes with application data models, as well as a fluent SQL query builder for constructing co

    Sanitizes string data and adds quotes to prevent SQL injection in manual queries.

    Gogolangmssqlmysql
    Ver en GitHub↗6,628
  • codeigniter4/codeigniter4Avatar de codeigniter4

    codeigniter4/CodeIgniter4

    5,924Ver en 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

    Automatically escapes values during SQL insert operations to prevent injection.

    PHPcodeignitercodeigniter4framework-php
    Ver en GitHub↗5,924
  • wisser/jailerAvatar de Wisser

    Wisser/Jailer

    3,130Ver en GitHub↗

    Jailer is a suite of specialized tools for AI-assisted SQL management, referential integrity preservation, and relational data browsing. It provides a system for generating referentially intact database subsets, allowing users to extract consistent slices of relational data while preserving foreign key constraints and dependencies. The project features an AI-driven SQL assistant that uses natural language to generate, optimize, and refactor queries based on database schemas. It also includes a data migration tool that analyzes SQL patterns to reverse engineer models and map associations betwe

    Wraps values in literal expressions during export to be evaluated as commands upon import.

    Javadatabasedb2export
    Ver en GitHub↗3,130
  1. Home
  2. Data & Databases
  3. SQL Utilities
  4. SQL Literal Escaping

Explorar subetiquetas

  • Value Escaping for SQL1 sub-etiquetaSanitizes string data by determining its type and adding quotes, preventing SQL injection in manually written queries. **Distinct from SQL Literal Escaping:** Distinct from SQL Literal Escaping: focuses on the broader concept of escaping values for SQL, not just literal string escaping.