How can I use Cloud SQL to create a database? When I use MySQL, I could easily run a sql script to create them on phpMyAdmin.
I found a site that advertises that it\'s p
UPDATE (2015-02-13): You can now use the Developer Console UI to manage your MySQL databases. Just go to your Cloud SQL instance page and click on the Databases
tab.
ORIGINAL ANSWER (still works): If you have a MySQL client installed it is fairly easy to connect to your Cloud SQL instance and create a new Database.
root
user.Then, if you're using the standard mysql command line client, go a to a terminal and run
mysql -uroot -p -h
Or you can just use any client you want.
Once you've connected to you database you can just CREATE DATABASE MyDatabase
.