Skip to content
Advertisement

Loading .sql files from within PHP

I’m creating an installation script for an application that I’m developing and need to create databases dynamically from within PHP. I’ve got it to create the database but now I need to load in several .sql files. I had planned to open the file and mysql_query it a line at a time – until I looked at the schema files and realised they aren’t just one query per line.

So, how do I load an sql file from within PHP (as phpMyAdmin does with its import command)?

Advertisement

Answer

I’m getting the feeling that everyone here who’s answered this question doesn’t know what it’s like to be a web application developer who allows people to install the application on their own servers. Shared hosting, especially, doesn’t allow you to use SQL like the “LOAD DATA” query mentioned previously. Most shared hosts also don’t allow you to use shell_exec.

Now, to answer the OP, your best bet is to just build out a PHP file that contains your queries in a variable and can just run them. If you’re determined to parse .sql files, you should look into phpMyAdmin and get some ideas for getting data out of .sql files that way. Look around at other web applications that have installers and you’ll see that, rather than use .sql files for their queries, they just package them up in PHP files and just run each string through mysql_query or whatever it is that they need to do.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement