上一页 1 2 3 4 5 6 7 ··· 18 下一页
摘要: django-admin startproject mysite dir cd mysite 阅读全文
posted @ 2018-07-28 21:11 未来的技术 阅读(112) 评论(1) 推荐(0) 编辑
摘要: dhttp://www.cnblogs.com/yuanchenqi/articles/6083427.html 阅读全文
posted @ 2018-07-28 13:26 未来的技术 阅读(179) 评论(0) 推荐(0) 编辑
摘要: from wsgiref.simple_server import make_server #wsgiref是服务器类似于njax #调用服务器模块下的make_server #这只是模拟服务器,以后肯定是njax或者是apache import time def fool(req): f=open("abc.html","rb") data=f.read() retur... 阅读全文
posted @ 2018-07-25 11:24 未来的技术 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 这个接口就是WSGI:Web Server Gateway Interface。web网关接口。 先运行,然后再浏览器输入127.0.0.1:8000可访问,浏览器模拟客户端,py模拟服务器 输入127.0.0.1:8000/tom,网页显示欢应tom 阅读全文
posted @ 2018-07-24 21:53 未来的技术 阅读(272) 评论(2) 推荐(0) 编辑
摘要: q代表权重优先级,*/*接受所有文件类型, 解压格式 语言 系统信息,主机 阅读全文
posted @ 2018-07-24 21:06 未来的技术 阅读(124) 评论(0) 推荐(0) 编辑
摘要: import pymysql #添加数据 conn = pymysql.connect(host='127.0.0.1', port=3306, user='root', passwd='', db='yyy') cursor = conn.cursor() try: insertSQL0="INSERT INTO ACCOUNT2 (name,balance) VALUES ... 阅读全文
posted @ 2018-07-23 17:56 未来的技术 阅读(311) 评论(0) 推荐(0) 编辑
摘要: 2 rollback(撤销sql语句只有delete,update,insert),可以查看原表 删除sql 3 保存提交事务 commit 阅读全文
posted @ 2018-07-23 17:43 未来的技术 阅读(702) 评论(1) 推荐(0) 编辑
摘要: import pymysql #连接数据库 conn=pymysql.connect(host='127.0.0.1',port=3306,user='root',passwd='123',db='leak') #字典形式取出的游标 cusor=conn.cursor(cursor=pymysql.cursors.DictCursor)#字典形式输出即id:1 ,name:tom cusor.... 阅读全文
posted @ 2018-07-23 17:03 未来的技术 阅读(4086) 评论(0) 推荐(0) 编辑
摘要: 恢复内容开始 insert into class(name) value("李晓明");插入 select id,name,age from class order by age ; 恢复内容结束 阅读全文
posted @ 2018-07-12 17:40 未来的技术 阅读(153) 评论(0) 推荐(0) 编辑
摘要: -- 查询表达式 SELECT *|field1,filed2 ... FROM tab_name WHERE 条件 GROUP BY field HAVING 筛选 ORDER BY field LIMIT 限制条数 准备表 CREATE TABLE ExamResult( id INT PRIM 阅读全文
posted @ 2018-07-12 15:23 未来的技术 阅读(155) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 18 下一页