python基础
赖三石
这家伙很懒,什么也没留下
展开
-
sqlalchemy简单操作(创建表,反射表)
1. 标准创建表语句CREATE TABLE `person`( `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY, `name` VARCHAR(20) NOT NULL, `age` INT NOT NULL DEFAULT 20, `sex` SMALLINT DEFAULT 1, `t_time` DATE...原创 2018-08-05 19:26:54 · 7284 阅读 · 5 评论 -
第五章:flask-SQLAlchemy的自定制
1.使SQLAlchemy对象自动支持commit() from flask_sqlalchemy import SQLAlchemy as _SQLAlchemyfrom contextlib import contextmanagerclass SQLAlchemy(_SQLAlchemy): @contextmanager def auto_comm...原创 2018-06-25 15:56:45 · 1055 阅读 · 1 评论 -
MySQL,mongodb用法对比
创建数据库,删除数据库mongodb>> use infoswitched to db info>> dbinfo ---(数据库)# 此时数据库并没有创建(show dbs查看,必须插入数据才会创建)stu = {原创 2018-06-06 12:16:06 · 165 阅读 · 0 评论 -
windows下mysql-python安装 (带下载神器)
windows下mysql-python安装出错windows安装python的mysql驱动是so easy的:pip install mysql-python但是毫不意外的出错了:_mysql.c(42) : fatal error C1083: Cannot open include file: 'config-win.h': No such file or directory一般安装运行上面转载 2017-11-18 11:22:08 · 442 阅读 · 0 评论 -
python装饰器(函数装饰器,类装饰器)
只要实现此obj(func)()模式,这个obj就叫一个装饰器——————————>参考https://cloud.tencent.com/developer/article/1114856 https://www.cnblogs.com/lianyingteng/p/7743876.html 函数装饰器例子---def decorator(func): de...原创 2018-06-06 13:01:24 · 8534 阅读 · 0 评论