I would like to add support for mysql2 with prepared statements. My questions is: Should I create a new adapter call mysql2 or should I add the support into the mysql adapter to use either mysql or mysql2 depending on which one you have installed? They have the same api, the only difference is that mysql2 implemented prepared statements.
This sounds awesome! We want one adapter if possible, either smart enough to look for what you have installed, or with an explicit configuration option.
I would like to add support for mysql2 with prepared statements. My questions is: Should I create a new adapter call mysql2 or should I add the support into the mysql adapter to use either mysql or mysql2 depending on which one you have installed? They have the same api, the only difference is that mysql2 implemented prepared statements.