摘要:
django-admin startproject mysite dir cd mysite 阅读全文
摘要:
dhttp://www.cnblogs.com/yuanchenqi/articles/6083427.html 阅读全文
摘要:
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... 阅读全文
摘要:
这个接口就是WSGI:Web Server Gateway Interface。web网关接口。 先运行,然后再浏览器输入127.0.0.1:8000可访问,浏览器模拟客户端,py模拟服务器 输入127.0.0.1:8000/tom,网页显示欢应tom 阅读全文
摘要:
q代表权重优先级,*/*接受所有文件类型, 解压格式 语言 系统信息,主机 阅读全文
摘要:
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 ... 阅读全文
摘要:
2 rollback(撤销sql语句只有delete,update,insert),可以查看原表 删除sql 3 保存提交事务 commit 阅读全文
摘要:
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.... 阅读全文
摘要:
恢复内容开始 insert into class(name) value("李晓明");插入 select id,name,age from class order by age ; 恢复内容结束 阅读全文
摘要:
-- 查询表达式 SELECT *|field1,filed2 ... FROM tab_name WHERE 条件 GROUP BY field HAVING 筛选 ORDER BY field LIMIT 限制条数 准备表 CREATE TABLE ExamResult( id INT PRIM 阅读全文