-
Notifications
You must be signed in to change notification settings - Fork 48
Handle in dsn optional dbname delimiter #29
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
base: master
Are you sure you want to change the base?
Conversation
add additional commits for:
|
Handling multiple databases for create queries, then sql is CREATE TABLE `database`.`table` and in same script is `information_schema`.`table` Fixing PDO::getAttribute() missing method Handling Multiple insert sql.
Also committed:
|
'Key' => in_array($name, $table_definition->primaryKeyColumns) ? 'PRI' : '', | ||
'Default' => $column->getDefault(), | ||
'Extra' => self::resolveExtra($column), | ||
'Privilegies' => 'select,insert,update,references', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this typo necessary?
Added handler for statement ALTER TABLE {table_name} AUTO_INCREMENT={N} |
Also want to thanks for this library. Tests speed was boosted 30 times for me, but all depends of amount of requests to database and it response speed. |
Thanks! Mind fixing the typo? |
You added an |
Oh. I see. Will fix. |
mysql:host=mysql;port=3306;dbname=my_db is valid dsn, but does not handled correctly