Expand description
SQL identifier quoting and sanitization utilities.
This module provides functions for safely quoting SQL identifiers (table names, column names, etc.) to prevent SQL injection and handle special characters.
Functionsยง
- quote_
ident - Quote a SQL identifier using ANSI double-quoting.
- quote_
ident_ mysql - Quote a SQL identifier using MySQL backtick quoting.
- sanitize_
identifier - Sanitize a SQL identifier by removing non-alphanumeric/underscore characters.