摘要:
1、pop方()查看SQLAlchemy的create_engine方法时看到default_strategy = 'plain'strategy = kwargs.pop('strategy', default_strategy)这段代码,不是很理解,查了一下手册,原来字典是有pop方法的,原型:pop(key[, default])说明:If key is in the dictionary, remove it and return its value, else return default. If default is not given and ke 阅读全文
摘要:
具体ORM的详细说明可以看 这里http://baike.baidu.com/view/197951.htmORM方法论基于三个核心原则: 简单:以最基本的形式建模数据。 传达性:数据库结构被任何人都能理解的语言文档化。精确性:基于数据模型创建正确标准化了的结构。现在来看看SQLAlchemy使用方法1、连接数据库create_engine() 如我连接的是mysql数据库 db_config = { 'host': 'xxx.xxx.xxx.xx', 'user': 'root', 'passwd': ' 阅读全文