MySQL grants read-only access to MySQL databases, enabling listing of databases and tables, describing table schemas, and executing safe SQL queries. It ensures data integrity and prevents modifications by only allowing SELECT, SHOW, DESCRIBE, and EXPLAIN statements. Implemented security features include query validation, query timeouts, and row limits to prevent SQL injection, resource consumption, and excessive data retrieval.
主な機能
01Query timeout
02Row limit
03Database and table listing
04Read-only access (SELECT, SHOW, DESCRIBE, EXPLAIN only)
05SQL injection prevention