上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 24 下一页
摘要: 增加 增加一条数据,方法可以是 db.集合名.insertOne({}) 或者直接是db.集合名.inset({}) db.stundent.insertOne({name:'zhangsan',age:18,height:170}) db.stundent.insert({name:'lisi', 阅读全文
posted @ 2022-03-30 20:52 弩哥++ 阅读(43) 评论(0) 推荐(0) 编辑
摘要: client = pymongo.MongoClient('mongodb://用户名:密码@主机IP:端口号', directConnection=True, serverSelectionTimeoutMS=2000) col = client['数据库']['集合名'] print(col.f 阅读全文
posted @ 2022-03-28 17:26 弩哥++ 阅读(244) 评论(0) 推荐(0) 编辑
摘要: ./mongo mongodb://用户名:密码@ip地址:端口号 阅读全文
posted @ 2022-03-24 16:59 弩哥++ 阅读(19) 评论(0) 推荐(0) 编辑
摘要: # ContentId:1 ->显示ContentId字段 # _id:0 ->不显示_id字段 # db.XX.find({Name:"接口测试"},{ContentId:1,_id:0}).sort({_id:-1}).limit(1) 阅读全文
posted @ 2022-03-24 16:52 弩哥++ 阅读(60) 评论(0) 推荐(0) 编辑
摘要: CREATE FUNCTION fun1() RETURNS INT BEGIN DECLARE num INT ; DECLARE i INT ; set num = 10000; set i = 2; WHILE i<=10000 DO INSERT INTO student(`name`) V 阅读全文
posted @ 2022-03-09 23:58 弩哥++ 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 创建用户 # create user 用户名 identified by 密码 create user test_user identified by '123456' 修改当前登录用户密码 set password=password('111111') 修改其他用户密码 set password 阅读全文
posted @ 2022-03-09 23:16 弩哥++ 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 之前Pytest运行的参数都是写在pytest.ini中的,今天练习的时候为了节省时间,就把main函数写在的测试用例的模块上,如 import pytest class TestDemo: def test_fun1(self): print('我是方法1') def test_fun2(self 阅读全文
posted @ 2022-03-07 20:34 弩哥++ 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 下载mysql,推荐5.7 或者8.0 5.7下载地址为: https://dev.mysql.com/downloads/mysql/5.7.html 下载后,保存到文件夹后,进行解压操作 配置环境变量:在path 增加解压后mysql的bin文件路径,如:D:\Soft\mysql\mysql- 阅读全文
posted @ 2022-02-23 15:03 弩哥++ 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 前置下载好centos镜像 创建一个新容器,命名为centos01,数据卷挂载为 宿主机/root/test_volume:容器内/home/volume 创建一个新容器,命名为centos02,数据卷挂载继承容器(centos01) 在宿主机/root/test_volume 目录下创建一个tes 阅读全文
posted @ 2022-01-26 15:30 弩哥++ 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 每次启动虚拟机后,都要手动的去启动docker服务,有点麻烦,可以设置为开机自动启动 systemctl enable docker 容器自动启动 --restart=always 阅读全文
posted @ 2022-01-26 14:05 弩哥++ 阅读(377) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 24 下一页