当前位置:Gxlcms > 数据库问题 > python创建数据库操作

python创建数据库操作

时间:2021-07-01 10:21:17 帮助过:10人阅读

!/usr/bin/python3 # -*- coding: utf-8 -*- # @Time : 2019/12/23 14:01 """ grant all privileges on *.* to ‘bkuser‘@‘%‘ identified by ‘bkuserpwd‘; 参考资料:https://blog.csdn.net/kongsuhongbaby/article/details/84948205 """ """创建数据库""" import pymysql # 打开数据库连接,不需要指定数据库,因为需要创建数据库 conn = pymysql.connect(10.10.50.60,user=bkuser, password=bkuserpwd) # 获取游标 cursor = conn.cursor() # 创建pythpdb数据库 cursor.execute("CREATE DATABASE IF NOT EXISTS pythondb ") cursor.close() # 先关闭游标 conn.close() # 再关闭数据库连接 print(创建pythonBD数据库成功)

python创建数据库操作

标签:enter   log   grant   port   tps   pdb   erp   参考资料   span   

人气教程排行