awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم 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

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • lib/pqالصورة الرمزية لـ lib

    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/dbalالصورة الرمزية لـ doctrine

    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/xormالصورة الرمزية لـ go-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/codeigniter4الصورة الرمزية لـ codeigniter4

    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/jailerالصورة الرمزية لـ Wisser

    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.