2.2.1 连接到单个 MySQL 服务器

在此示例中,使用 MySQL 用户帐户 user 及其密码,建立与在默认 TCP/IP 端口 33060 上运行 X Plugin 的本地 MySQL 服务器实例的连接。由于未设置其他参数,因此使用默认值。

# Passing the parameters in the { param: value } format
dictSession = mysqlx.get_session( {
        'host': 'localhost', 'port': 33060,
        'user': 'user', 'password': 'password' } )

db1 = dictSession.get_schema('test')

# Passing the parameters in the URI format
uriSession = mysqlx.get_session('user:password@localhost:33060')

db2 = uriSession.get_schema('test')

以下示例演示了如何通过提供 TCP/IP 地址 localhost 和与之前相同的用户帐户,连接到单个 MySQL 服务器实例。在这种情况下,系统将提示您输入用户名和密码。

# Passing the parameters in the { param: value } format
# Query the user for the account information
print("Please enter the database user information.")
usr = shell.prompt("Username: ", {'defaultValue': "user"})
pwd = shell.prompt("Password: ", {'type': "password"})

# Connect to MySQL Server on a network machine
mySession = mysqlx.get_session( {
        'host': 'localhost', 'port': 33060,
        'user': usr, 'password': pwd} )

myDb = mySession.get_schema('test')