上一页 1 ··· 4 5 6 7 8
摘要: 若不知道具体目录,可以根据端口查找,查看端口22000的信息: sudo lsof -i:22000 RelaySvr 4322 root 13u IPv4 75680495 0t0 TCP *:snapenetio (LISTEN) 查看进程4322具体信息: cd /proc/4322 sudo 阅读全文
posted @ 2018-08-29 09:57 菜菜_包包 阅读(1013) 评论(0) 推荐(0) 编辑
摘要: import unittestimport HTMLTestRunnertest as HTMLTestRunner#获取路径path = './'#创建测试套件,读取测试脚本suite = unittest.TestLoader().discover(path,pattern="test*.py" 阅读全文
posted @ 2018-08-03 11:30 菜菜_包包 阅读(582) 评论(0) 推荐(0) 编辑
摘要: import MySQLdbimport MySQLdb.cursors#sql语句sql = "select * from table"#连接数据库db = MySQLdb.connect(host="localhost", user="root", passwd="root1234", char 阅读全文
posted @ 2018-08-03 11:25 菜菜_包包 阅读(562) 评论(0) 推荐(0) 编辑
摘要: 接口返回数据: print sql[0][10] {"recv_name":"rdgztest_63126","send_name":"rdgztest_63126","recv_avatar":"https://wx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTJ2bWib0T 阅读全文
posted @ 2018-08-03 11:22 菜菜_包包 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 1、启动服务:net start MySQL 停止服务:net stop MySQL 2、链接数据库:MySQL -r root -h localhost -p 3、数据库操作: 查询所有数据库:show databases; 创建数据库:create database <数据库名>; 删除数据库: 阅读全文
posted @ 2017-09-15 13:09 菜菜_包包 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 1.点击insert 阅读全文
posted @ 2017-09-14 18:25 菜菜_包包 阅读(277) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8