I'm writing a .sql file using Perl, not writing to the mysql database directly. I need to quote the strings in that file. Looks like the $dbh-quote() method does what I want. Except that I can't figure out how to use it without a database connection. I'd make a dummy connection, but I can't seem to do this without a database running, and the machine that is going to run this cron job won't have one.
This question is similar: Perl DBI without accessing the database and the accepted answer states that "You might attempt to load the driver you need and call the function directly", which is what I would like to do, but I can't figure out how to do that.
