awesome-repositories.com
博客
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目关于排名机制媒体报道MCP 服务器
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

5 个仓库

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

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • lib/pqlib 的头像

    lib/pq

    9,903在 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
    在 GitHub 上查看↗9,903
  • doctrine/dbaldoctrine 的头像

    doctrine/dbal

    9,699在 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
    在 GitHub 上查看↗9,699
  • go-xorm/xormgo-xorm 的头像

    go-xorm/xorm

    6,628在 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
    在 GitHub 上查看↗6,628
  • codeigniter4/codeigniter4codeigniter4 的头像

    codeigniter4/CodeIgniter4

    5,924在 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
    在 GitHub 上查看↗5,924
  • wisser/jailerWisser 的头像

    Wisser/Jailer

    3,130在 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
    在 GitHub 上查看↗3,130
  1. Home
  2. Data & Databases
  3. SQL Utilities
  4. SQL Literal Escaping

探索子标签

  • Value Escaping for SQL1 个子标签Sanitizes 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.