- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
import pymssql #引入pymssql模块
server = "localhost"
user = "root"
password = "root"
charset = "cp936"
database = "text_01"
def conn():
connect = pymssql.connect(server,user,password,database,charset) #服务器名,账户,密码,数据库名
if connect:
print("连接成功!")
cursor = con.cursor()
# 查询数据库内容
sqlfirst = "select * from datatable"
cursor.execute(sqlfirst)
# 获取查询结果,如果是多条使用:cursor.fetchall()
result = cursor.fetchone()
if __name__ == '__main__':
conn = conn()
以上就是python连接MySQL数据库的基础代码示例,需要注意的是,如果你的数据库中存在中文,必须要设置编码格式为:"cp936"
本文作者:疯狂的小标点
本文链接:https://www.cnblogs.com/hanqingtao/p/14096303.html
版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 2.5 中国大陆许可协议进行许可。