Putting data from local SQL database to remote SQL database without remote SQL access enabled (PHP)

Posted by Shyam on Stack Overflow See other posts from Stack Overflow or by Shyam
Published on 2010-04-28T22:44:55Z Indexed on 2010/04/28 22:47 UTC
Read the original article Hit count: 853

Filed under:
|
|
|

Hi,

I have a local database, and all the tables are defined. Eventually I need to publish my data remotely, which I can do easily with PHPmyadmin. Problem however is that my remote host doesn't allow remote SQL connections at all, so writing a script that does a mysqldump and run it through a client (which would've been ideal) won't help me here. Since the schema won't change, but the data will, I need some kind of PHP client that works "reverse".

My question is if such a client exists and what would be recommended to use (by experience). I just need an one way trip here, from my local database (Rails) to the remote database (supports PHP), preferable as simple and slick as possible. Thank you for your replies, comments and feedback!

© Stack Overflow or respective owner

Related posts about mysql

Related posts about php