perl5-dbi / DBD-mysql

MySQL driver for the Perl5 Database Interface (DBI)
https://metacpan.org/module/DBD::mysql
Other
62 stars 71 forks source link

Cleanup deprecated functionality #416

Closed dveeden closed 6 months ago

dveeden commented 6 months ago

See also: #415

This removes:

Admin functions (e.g. createdb, shutdown, dropdb, reload). The commands in the protocol have been removed and have been replaced with regular SQL.

$drh->func('createdb', 'admin', '127.0.0.1:3306', 'root', 'xxx', 'admin');

Support for LISTFIELDS. Use SHOW COLUMNS... instead.

$dbh->do('LISTFIELDS t1');