library pdo-database-manager
Database manager based on PDO with extension methods
cheese-burgames/pdo-database-manager
Database manager based on PDO with extension methods
- Monday, April 30, 2018
- by chrisCheeseBurgames
- Repository
- 1 Watchers
- 0 Stars
- 1 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 0 Forks
- 0 Open issues
- 2 Versions
- 0 % Grown
pdo-database-manager
Error table structure
Providing you use the default name for the error table, the structure should be:, (*1)
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
);