MySQL连接到Google Cloud SQL实例语法错误

时间:2019-11-12 08:15:58

标签: mysql google-cloud-platform

我正尝试按照https://cloud.google.com/sql/docs/mysql/connect-admin-ip#connect中的命令连接到mysql客户端中的Google Cloud实例

mysql --host=[INSTANCE_IP] --user=root --password

,语法错误如下所示。语法有什么问题? Mysql客户端版本是8.0

enter image description here

2 个答案:

答案 0 :(得分:0)

据我了解,您想连接到Cloud MySQL实例以确保一切正常,然后再将C#代码连接到它。

如果看到“ mysql>”,是因为您已连接到该实例。

enter image description here

答案 1 :(得分:0)

正如Stefan G.先前所说的那样,您已经在mysql工具中。但是,您可能实际上未连接到服务器。出现提示Dim shellCommand As String shellCommand = exePath & " " & scriptPath & " " & workbook_folder & " " & workbook_name Debug.Print shellCommand Stop ' validate the string in the immediate pane, tweak double quotes, fix, F5 to resume execution shell.Run shellCommand 时,键入mysql>。它会告诉您是否连接到实例。状态输出中将有一个status字段,该字段应该是您实例的IP地址。

如果不是,则连接步骤出了点问题,您将需要运行Connection:,其中是实例中一个datbase的ID。看看该错误是否也出现了,如果确实发生了,那么这里存在更深层的错误。

如果您已连接到数据库,则应该能够运行connect <databasename>并使其列出数据库中的表。