So I have a PHP script that currently uses MySQL functions to connect and query MySQL database. I need to change the code so it will work with any kind database, and not just MySQL. What are examples or other ways to do that with non-mysql functions?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
I would create generic functions to usual operations (connect, query, fetch,...) and use them as wrappers to the MySQL or other SQL dbms you want to use. But I think you should be more focused on what you want to use. |
|||
|
|
|
Take a look at |
|||
|
|