vote up 1 vote down star
1

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, please.. how do I load an sql file from within PHP? (as phpMyAdmin does with it's import command).

flag

You mean a database dump? – Vinko Vrsalovic Sep 29 '08 at 7:41
I don't want to be harsh, but really this question needs to be asked? Googling a little will find tons of links. – Anonymous Sep 29 '08 at 7:42
Not least the phpMyAdmin's source itself :) – Vinko Vrsalovic Sep 29 '08 at 7:44
@Anonymous : I was looking for 'the best' way. This place is supposed to be a one stop shop for answers (for the future as well) and therefore I feel asking questions answered elsewhere is quite fine. I did, however, look elsewhere first and could not find a great answer. – Josh Smeaton Sep 30 '08 at 9:51
RE: phpMyAdmin - it's source is somewhat helpful but very dependant on it's other functionality and is not suitable to my very strict timeframe and complexity requirement. – Josh Smeaton Sep 30 '08 at 9:53

9 Answers

vote up 2 vote down check

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.

link|flag
Good point that hosted environments are more restrictive. The OP's question does not mention that the application needs to deploy in hosted environments. Hmm. The question of running SQL scripts in PHP comes up often enough that it'd be a great little project. – Bill Karwin Sep 30 '08 at 23:03
Yeah, I was gonna say that - you can't expect people to assume that you are in the most restrictive environment ever. Especially with virtual machines being offered all over everyone can have their own server at relatively little cost. – Till Oct 17 '08 at 0:45
vote up 3 vote down

The simplest solution is to use shell_exec() to run the mysql client with the SQL script as input. This might run a little slower because it has to fork, but you can write the code in a couple of minutes and then get back to working on something useful. Writing a PHP script to run any SQL script could take you weeks.

Supporting SQL scripts is more complex than what people are describing here, unless you're certain that your script contains only a subset of the functionality of scripts. Below are some examples of things that may appear in an ordinary SQL script that make it complex to code a script to interpret it line by line.

-- Comment lines cannot be prepared as statements
-- Here's a MySQL client tool builtin command cannot be prepared or executed by server:
USE testdb;

-- Here's multi-line statement:
CREATE TABLE foo (
  string VARCHAR(100)
);

-- Here's a statement that is not supported as a prepared statement:
LOAD DATA INFILE 'datafile.txt' INTO TABLE foo;

-- Here's a statement that is not terminated with a semicolon:
DELIMITER //

-- Here's a multi-line statement that contains a semicolon 
-- but it's not the statement terminator:
CREATE PROCEDURE simpleproc (OUT param1 INT)
BEGIN
  SELECT COUNT(*) INTO param1 FROM foo;
END
//
link|flag
+1 :) It's just as others have mentioned, sometimes you don't have access to what's under the hood. – Till Oct 17 '08 at 0:48
Why did this get voted down? The point is valid: parsing SQL ain't easy. – yar Dec 6 '08 at 1:48
I dunno. Maybe it just wasn't what they wanted to hear? – Bill Karwin Dec 6 '08 at 2:23
vote up 2 vote down

mysql_query("LOAD DATA LOCAL INFILE '/path/to/file' INTO TABLE mytable");

link|flag
doesnt work if your server is remote. – Mez Sep 29 '08 at 8:04
if you upload your file to the server first it does... – olle Sep 29 '08 at 8:14
vote up 2 vote down

Are you sure that its not one query per line? Your text editor may be wrapping lines, but in reality each query may be on a single line.

At any rate, olle's method seems best. If you have reasons to run queries one at time, you should be able to read in your file line by line, then use the semicolon at the end of each query to delimit. You're much better off reading in a file line by line than trying to split an enormous string, as it will be much kinder to your server's memory. Example:

$handle = @fopen("/sqlfile.sql", "r");
if ($handle) {
while (!feof($handle)) {
    $query.= fgets($handle, 4096);
    if (substr(rtrim($query, -1) == ';') {
     // ...run your query, then unset the string
     $query = '';
    }
}
fclose($handle);
}

Obviously, you'll need to consider transactions and the rest if you're running a whole lot of queries in a batch, but it's probably not a big deal for a new-install script.

link|flag
That won't always work.. What if you have a query like.. SELECT example FROM blah WHERE something = "something;" – dbr Sep 29 '08 at 8:35
if (substr(rtrim($query, -1) == ';') { is incorrect. It should be: if (substr(rtrim($query), -1) == ';') { – Josh Smeaton Sep 29 '08 at 14:57
file() reads the file split into lines just fine, and the code is a lot cleaner. – Nouveau Sep 29 '08 at 16:06
vote up 2 vote down

My suggestion would be to look at the sourcecode of PHPMyBackup. It's an automated PHP SQL loader. You will find that mysql_query only loads one query at a time, and projects like PHPMyAdmin and PHPMyBackup have already done the hard work for you of parsing the SQL the correct way. Please don't re-invent that wheel :P

link|flag
2  
FWIW, both phpMyBackup and phpMyAdmin are licensed under GPL. If you 'borrow' any of their code, you are obliged to make your own project GPL as well. – Bill Karwin Dec 6 '08 at 2:33
vote up 2 vote down

mysqli can run multiple queries separated by a ;

you could read in the whole file and run it all at once using mysqli_multi_query()

But, I'll be the first to say that this isn't the most elegant solution.

link|flag
vote up 0 vote down

Why not take the code from phpMyAdmin and use that? It's Open Source after all...

link|flag
1  
Look at it and take ideas, okay. If you don't want to make your application open source, better not take the code, as it's GPL – Vinko Vrsalovic Sep 29 '08 at 7:49
..because it's an extremely complicated tool, and it's a fairly simple problem.. – dbr Sep 29 '08 at 8:33
It's complicated. The GPL only matters if you plan on distributing your own app as closed source (not possible). Aside from that no reason to spread the opensource fear. – Till Oct 17 '08 at 0:47
vote up 0 vote down

Unless you plan to import huge .sql files, just read the entire file into memory, and run it as a query.

It's been a while since I've used PHP, so, pseudo code:

all_query = read_file("/my/file.sql")
con = mysql_connect("localhost")
con.mysql_select_db("mydb")
con.mysql_query(all_query)
con.close()

Unless the files are huge (say, over several megabytes), there's no reason to execute it line-at-a-time, or try and split it into multiple queries (by splitting using ;, which as I commented on cam8001's answer, will break if the query has semi-colons within strings)..

link|flag
Unfortunately, mysql_query will only execute one query at a time ;) – SchizoDuckie Sep 29 '08 at 9:48
$query="SELECT * FROM posts LIMIT 1; SELECT * FROM posts LIMIT 1"; mysql_query($query); seems to run fine..? I guess you can't grab the results of each query, but if you're just loading the .sql file, surely all you need to check for is the query erroring? – dbr Sep 30 '08 at 22:58
I voted +1, but next time, improve on the pseudo code. ;) – Till Oct 17 '08 at 0:46
vote up -2 vote down

I guess the easiest way would be to execute mysqlimport command line utility from the script instead of building ad-hoc parsers.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.