0

I have installed MySQL locally and I am trying to use it as a development server and then upload history and master data to the RDBMS on GAE. I can connect to the local MySQL with
... c:>mysql -u root -p ...and I connect to the RDBMS with ...c:>google_sql.cmd [instance] ... but how do I do both connections in one program. I have tried using Squirrel and Eclipse and I can connect to local but not the GAE. What is the best method of attaching to both in one app.

Thanks Dan

dan_ras
  • 109
  • 10
  • Have you read (and followed) [Google's instructions on how to get Squirrel working](https://developers.google.com/cloud-sql/docs/admin_tools)? Because I've already used Squirrel's DBCopy plugin to copy data between several brands of db's, and as far as I can see Google's db is - from the point of view of Squirrel - just another jdbc connection once properly setup. – fvu Jan 22 '13 at 01:14
  • make this an answer instead of comment because you did answer it. I thought it just needed the .exe but it needs the .jar, so search for google_sql.jar and use it as extra class path. Thanks Dan – dan_ras Jan 22 '13 at 02:07

1 Answers1

1

Have you read (and followed) Google's instructions on how to get Squirrel working? Because I've already used Squirrel's DBCopy plugin to copy data between several brands of db's, and as far as I can see Google's db is - from the point of view of Squirrel - just another jdbc connection once properly setup.

fvu
  • 32,488
  • 6
  • 61
  • 79