cheese-burgames / pdo-database-manager
This package is abandoned and no longer maintained.
The author suggests using the chsxf/pdo-database-manager package instead.
Database manager based on PDO with extension methods
1.0.1
2019-06-25 13:23 UTC
Requires
- php: ^5.4.0 || ^7.0
This package is auto-updated.
Last update: 2021-09-18 13:18:00 UTC
README
Error table structure
Providing you use the default name for the error table, the structure should be:
CREATE TABLE `mfx_database_errors` ( `query` text COLLATE utf8_bin NOT NULL, `error_code` int(11) NOT NULL, `error_message` text COLLATE utf8_bin NOT NULL, `file` text COLLATE utf8_bin NOT NULL, `line` int(11) NOT NULL, `function` text COLLATE utf8_bin NOT NULL, `class` text COLLATE utf8_bin NOT NULL );