Re: Using PHP to do a MySql Dump

2002-12-20 Thread Claudia Nölker
AFAIK, there is no built-in function in PHP for a dump. That's at least what the manual says. An alternative is to use a system call e.g. system() or exec() with mysqldump. Hope that helps, Claudia >From Todd Cary <[EMAIL PROTECTED]> on Fri, Dec 20, 2002 at 08:35:02AM -0800 > Is there a function

Re: Using PHP to do a MySql Dump

2002-12-20 Thread Brad Bonkoski
Upon initial search, does not appear to be. except: exec("mysqldump") or system(), or shell_exec() Maybe the PHP list would render better results? HTH -Brad Todd Cary wrote: > Is there a function that can be implemented with PHP to do the > equivalent of a mysqldump? > > Todd > > -- Ariste Softwa

RE: Using PHP to do a MySql Dump

2002-12-20 Thread Joe Stump
You could do an SELECT * INTO OUTFILE (the documentation is on mysql's website). --Joe -- Joe Stump <[EMAIL PROTECTED]> http://www.joestump.net -Original Message- From: Todd Cary [mailto:[EMAIL PROTECTED]] Sent: Friday, December 20, 2002 8:35 AM To: [EMAIL PROTECTED] Subject: Using PHP