我正在尝试使用以下语句从Ride(Robotframework)连接到Mysql数据库
Connect To Database Using Custom Params pymysql 'pbds120_NO_RSA','username','password','10.x.x.x',3306
但是我收到了错误:2003, "Can't connect to MySQL server on 'pbds120_NO_RSA' ([Errno 11001] getaddrinfo failed)
有没有人知道这个错误?
答案 0 :(得分:0)
解析关键字调用,就好像要连接的主机名是' pbds120_NO_RSA',而您似乎想要连接到' 10.x.x.x'。
检查documentation of the library - 明确命名不同的参数:
Connect To Database Using Custom Params pymysql database='pbds120_NO_RSA', user='username', password='password', host='10.x.x.x', port=3306