Re: off-line development tool?

2002-02-24 Thread Steve Rapaport
No need, Marco. Assuming you can run Mysql at the remote machine, you can simply take the export file and run it in mysql. Either, from the mysql prompt, type mysql use mynewdatabase; mysql source dumpfile; or you can do it from a command line like % mysql -e use mynewdatabase; source

RE: off-line development tool?

2002-02-23 Thread Marco Bleeker
and that I could unleash a CREATE command on? Thanks, Marco From: Eric Mayers [EMAIL PROTECTED] To: Marco Bleeker [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: RE: off-line development tool? Date: Fri, 22 Feb 2002 18:27:23 -0800 I suggest you install a MySQL Database on a local machine and do

RE: off-line development tool?

2002-02-22 Thread Eric Mayers
I suggest you install a MySQL Database on a local machine and do development there. When you want to push this stuff to the remote machine use mysqldump to pull the contents out of the local database. I don't think it would be appropriate for this but you might consider database replication if