pub fn validate_table_name(table: &str) -> Result<(), String>
Validate that a table name is safe for SQL interpolation.
Only allows: ^[a-zA-Z_][a-zA-Z0-9_]*$ This prevents SQL injection via table names.
^[a-zA-Z_][a-zA-Z0-9_]*$