cheese-burgames / pdo-database-manager
Database manager based on PDO with extension methods
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 1
Open Issues: 0
pkg:composer/cheese-burgames/pdo-database-manager
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 );