Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: How to execute sql scripts via perl

by samtregar (Abbot)
on Mar 04, 2009 at 05:55 UTC ( [id://747995]=note: print w/replies, xml ) Need Help??


in reply to How to execute sql scripts via perl

It's possible, but not usually worth the effort. If you want to do it, what you need to do is read in the SQL file and split up each statement. Pass each statement to $dbh->do(). Something like (untested):

# read foo.sql into memory open my $fh, "<", "foo.sql" or die $!; my $sql = do { local $/; <$fh> }; # split on ; at the end of a line my @commands = split /;\s*\n/, $sql; # run each command $dbh->do($_) for @commands;

It's not perfect - it will break if you have a comment that ends in a ";" for example. Usually it's better to just shell out to the MySQL shell to load a whole SQL file:

system("mysql -hhost -uname -ppass db < foo.sql") == 0 or die "Failed: $?";

-sam

Replies are listed 'Best First'.
Re^2: How to execute sql scripts via perl
by cnarun86 (Initiate) on Mar 04, 2009 at 07:40 UTC
    Thanks for the reply.

    Now I am using the shell command. Its working

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://747995]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (3)
As of 2024-04-16 13:16 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found