连接MySQL数据库“test”的示例 -
时间: 2024-10-22 12:13:02 浏览: 16
idea连接mysql数据库.doc
连接MySQL数据库通常需要使用数据库驱动程序,比如Python中的`pymysql`或Java中的`JDBC`。这里是一个简单的Python示例,使用`pymysql`库连接到名为"test"的数据库:
```python
import pymysql
# 数据库连接信息
db_config = {
'host': 'localhost', # 数据库服务器地址
'user': 'your_username', # 用户名
'password': 'your_password', # 密码
'database': 'test', # 数据库名称
'charset': 'utf8mb4' # 字符集
}
# 连接到数据库
try:
connection = pymysql.connect(**db_config)
print("Connected to MySQL database!")
except pymysql.Error as e:
print(f"Error connecting to the database: {e}")
# 使用cursor()方法获取游标对象并执行SQL查询
with connection.cursor() as cursor:
sql_query = "SELECT * FROM your_table"
cursor.execute(sql_query)
results = cursor.fetchall()
for row in results:
print(row)
# 关闭连接
connection.close()
```
在这个例子中,你需要将`your_username`, `your_password`替换为实际的用户名和密码,并指定要查询的表名(`your_table`)。
阅读全文