
数据库
ZhaoXuWen23
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
数据库进阶
python关于mysql的API--pymysql模块 pymsql是Python中操作MySQL的模块,其使用方法和py2的MySQLdb几乎相同。 模块安装 pip install pymysql 执行sql语句 import pymysql #添加数据 conn = pymysql.connect(host='127.0.0.1', port=3306, user='root', passwd='', db='yyy') cursor = conn.cursor() # sql = """转载 2020-12-24 14:12:29 · 119 阅读 · 0 评论 -
数据库基础
mysql安装 linux: –yun -y install mariadb mariadb-server OR –yun -y install mysql mysql-server win: –http//dev.mysql.com/downloads/mysql/ 启动 –service mysqld start #开启 –chkconfig mysqld on #设置开机自启 OR –systemctl start mariadb –systemctl enable mariadb 查看 – p转载 2020-12-24 11:40:51 · 157 阅读 · 0 评论