phpstan-dba icon indicating copy to clipboard operation
phpstan-dba copied to clipboard

support "show" queries

Open staabm opened this issue 3 years ago • 0 comments

show queries should also work with type inference and syntax error validation

examples: 'show variables like "slow_query_log"' "SHOW TABLE STATUS where collation ='utf8_mbw4'"

    private static function get_table_columns(string $table)
    {
        $db = new DB();
        $qid = $db->query('SHOW FULL COLUMNS FROM ?, [$table]);
    }

staabm avatar Jul 29 '22 06:07 staabm