MySQL服务器确实支持通过TCP/IP进行连接。TCP/IP是一种广泛使用的网络通信协议,它允许不同类型的计算机和网络设备之间进行通信。MySQL服务器默认配置通常就支持TCP/IP连接。
以下是一个简单的Python示例,展示如何通过TCP/IP连接到MySQL服务器并执行查询:
import mysql.connector
# 创建连接
config = {
'user': 'your_username',
'password': 'your_password',
'host': 'your_mysql_server_ip',
'database': 'your_database_name',
'raise_on_warnings': True
}
try:
cnx = mysql.connector.connect(**config)
cursor = cnx.cursor()
# 执行查询
query = ("SELECT * FROM your_table_name")
cursor.execute(query)
# 输出结果
for row in cursor:
print(row)
except mysql.connector.Error as err:
print(f"Something went wrong: {err}")
finally:
cursor.close()
cnx.close()
请注意替换示例代码中的占位符(如your_username
、your_password
等)为实际的值。此外,确保已安装mysql-connector-python
库,可以使用pip install mysql-connector-python
命令进行安装。
更多关于MySQL和TCP/IP连接的信息,可以参考MySQL官方文档或相关网络教程。
领取专属 10元无门槛券
手把手带您无忧上云