Base = declarative_base

基类:

1.存储表

2.建立class-Table 的映射关系

engine = create_engine('mysql://root:root@localhost:3307/test', echo=False)

连接数据库

Session = sessionmaker(bind=engine)
sess = Session()

会话

1.保存上下文信息

2.容器,存储对对象的操作。

metadata

所有Base的子类,共享这个metadata

1.所有Table存储在此metadata中
2.共享此metadata的属性和方法。

mapper

将class -- Table 进行映射

Column 重要参数
1.name 字段名(可选,该参数优先级高于变量名)
2.type_ 字段类型,注意:MySQL中,String类型必须指定长度
3.primary_key 如该参数为True,那么该字段为主键(False)
4.unique 如该参数如果为True,相应字段具有唯一性(False)
5.index 如该参数为True,相应字段为索引字段(False)
6.nullable 如该参数为False,该字段不允为空(True)
7.ForeignKey 通过该参数指定外键
8.default 指定该字段的默认值
engine 特性及重要参数
1.Engine是数据库核心接口
2.Lazy Connecting,此时并未真正建立其和数据库的连接,直到:engine.execute(),engine.connect()等方法被调用才会真正建立连接
3.pool_size = 5; 连接池的大小,默认为 5
4.max_overflow = 10; 连接池可溢出最大数量 默认为10 [不放入连接池]
5.echo = False; 打印SQL语句,调用logging模块,默认为False
6.encoding = 'utf-8'; 编码方式,默认为 utf8
7.pool_recycle = -1 连接回收时间 -1,永不回收(推荐设置3600即1h)
注意: MySQL连接的默认断开时间是 8小时
8.pool_timeout=30 尝试从连接池中获取连接的超时时间

反向映射(即将数据库中的表映射成程序中的表对象)

Base.metadata.reflect(engine)
print(Base.metadata.tables)
print(Student.__table__)    # 查看类对应的表
print(Student.__mapper__) # 查看类对应的mapper函数
engine = create_engine("...")
Session = sessionmaker(bind=engine) # new session. no connections are in use.
session = Session()
try:
# first query. a Connection is acquired
# from the Engine, and a Transaction
# started.
item1 = session.query(Item).get(1) # second query. the same Connection/Transaction
# are used.
item2 = session.query(Item).get(2) # pending changes are created.
item1.foo = 'bar'
item2.bar = 'foo' # commit. The pending changes above
# are flushed via flush(), the Transaction
# is committed, the Connection object closed
# and discarded, the underlying DBAPI connection
# returned to the connection pool.
session.commit()
except:
# on rollback, the same closure of state
# as that of commit proceeds.
session.rollback()
raise
finally:
# close the Session. This will expunge any remaining
# objects as well as reset any existing SessionTransaction
# state. Neither of these steps are usually essential.
# However, if the commit() or rollback() itself experienced
# an unanticipated internal failure (such as due to a mis-behaved
# user-defined event handler), .close() will ensure that
# invalid state is removed.
session.close()

关于数据库 字段为时间戳问题的探究:

/*create_time 自动保存创建时间;modify_time 自动保存修改时间*/
create table teacher(id int not null auto_increment primary key, name varchar(30),create_time TIMESTAMP default CURRENT_TIMESTAMP not null,modify_time TIMESTAMP default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP not null)ENGINE=InnoDB DEFAULT CHARSET=utf8;
show create table students; # 查看创建数据表的命令
import datetime
import time
from sqlalchemy import create_engine, Column, Integer, String, TIMESTAMP, text
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import sessionmaker Base = declarative_base() engine = create_engine("mysql+pymysql://root:root@localhost/sqla?charset=utf8") class Student(Base):
__tablename__ = "students"
__table_args__ = {
# "mysql_engine":"MyISAM",
"mysql_charset":"utf8"
} # show create table students 可以查看建表语句;默认是Innodb,lating-1.如果想显示中文需要修改指定建表的类型,同时,engine也要指定编码格式
id = Column(Integer,primary_key=True)
name = Column(String(30))
# first update_time 必须在上面,
update_time = Column(TIMESTAMP,nullable=False)
create_time = Column(TIMESTAMP,nullable=False,server_default=text("current_timestamp"))
# create_time = Column(TIMESTAMP(True),nullable=False,server_default=text("now()"))
# create_time = Column(TIMESTAMP(True),default=datetime.datetime.now()) # show create table students 会发现create_time 字段默认是null而不是current_timestamp,虽然可以正常使用,但是不推荐
# second 颠倒 update_time 和 create_time 两个字段的顺序
# create_time = Column(TIMESTAMP(True),nullable=False,server_default=text("current_timestamp"))
# create_time = Column(TIMESTAMP(True),nullable=False,server_default=text("now()"))
# create_time = Column(TIMESTAMP(True),nullable=False,default=datetime.datetime.now()) # error 会有 on update current_timestamp语句
# update_time = Column(TIMESTAMP(True),nullable=False,server_default=text("current_timestamp on update current_timestamp"))
# update_time = Column(TIMESTAMP(True),nullable=False,server_default=text("now() on update current_timestamp"))
# third error # 该例证明了直接颠倒两个字段会失败的.
# create_time = Column(TIMESTAMP(True),nullable=False,server_default=text("current_timestamp"))
# update_time = Column(TIMESTAMP(True),nullable=False) Base.metadata.drop_all(engine)
Base.metadata.create_all(engine)
Session = sessionmaker(bind=engine)
sess = Session() zhangsan = Student(name='张三')
sess.add(zhangsan)
sess.commit()
time.sleep(10)
zhangsan_1 = sess.query(Student).get(1)
zhangsan_1.name = 'lisi'
sess.commit()
wangwu = Student(name='wangwu')
sess.add(wangwu)
sess.commit()

sqlalchemy学习-- 重要参数的更多相关文章

  1. SQLAlchemy 学习笔记(二):ORM

    照例先看层次图 一.声明映射关系 使用 ORM 时,我们首先需要定义要操作的表(通过 Table),然后再定义该表对应的 Python class,并声明两者之间的映射关系(通过 Mapper). 方 ...

  2. 学习JVM参数前必须了解的

    JVM参数是什么 大家照相通常使用手机就够用了,但是针对发烧友来说会使用更专业的设备,比如单反相机,在单反里有好几个模式,P/A/S/M,其中P是傻瓜模式,程序会自动根据环境设置快门速度和光圈大小,以 ...

  3. sqlAlchemy学习 001

    研究学习主题 sqlAlchemy架构图 测试练习代码编写 连接数据库 看代码 db_config = { 'host': 'xxx.xxx.xxx.xx', 'user': 'root', 'pas ...

  4. SQLAlchemy 学习笔记(一):Engine 与 SQL 表达式语言

    个人笔记,如有错误烦请指正. SQLAlchemy 是一个用 Python 实现的 ORM (Object Relational Mapping)框架,它由多个组件构成,这些组件可以单独使用,也能独立 ...

  5. sqlalchemy学习

    sqlalchemy官网API参考 原文作为一个Pythoner,不会SQLAlchemy都不好意思跟同行打招呼! #作者:笑虎 #链接:https://zhuanlan.zhihu.com/p/23 ...

  6. TypeScript 学习一 参数,函数,析构表达式

    1,TypeScript是由谷歌开发的,并且新出的Angular2框架就是谷歌公司由TypeScript语言编写的,所以现在TypeScript是有微软和谷歌一起支持的: 2,TypeScript在j ...

  7. shell脚本学习- 传递参数

    跟着RUNOOB网站的教程学习的笔记 我们可以在执行shell脚本时,向脚本传递参数,脚本内获取参数的格式为:$n.n代表一个数字,1为执行脚本的第一参数,2为执行脚本的第二个参数,以此类推... 实 ...

  8. 深度学习:参数(parameters)和超参数(hyperparameters)

    1. 参数(parameters)/模型参数 由模型通过学习得到的变量,比如权重和偏置 2. 超参数(hyperparameters)/算法参数 根据经验进行设定,影响到权重和偏置的大小,比如迭代次数 ...

  9. SQLAlchemy 学习笔记(三):ORM 中的关系构建

    个人笔记,不保证正确. 关系构建:ForeignKey 与 relationship 关系构建的重点,在于搞清楚这两个函数的用法.ForeignKey 的用法已经在 SQL表达式语言 - 表定义中的约 ...

随机推荐

  1. Spring MVC post请求乱码解决

    在页面发送POST请求,将中文传递给controller,在编译平台发生乱码,导致存储到数据库中的数据也乱码 解决办法: 在web.xml中添加一个编码过滤器 <filter> <f ...

  2. Flume+HBase+Kafka集成与开发

    先把flume1.7的源码包下载 http://archive.apache.org/dist/flume/1.7.0/ 下载解压后 我们通过IDEA这个软件来打开这个工程 点击ok后我们选择打开一个 ...

  3. IOS 7层协议

    ios七层 (1)物理层——Physical 这是整个OSI参考模型的最低层,它的任务就是提供网络的物理连接.所以,物理层是建立在物理介质上(而不是逻辑上的协议和会话),它提供的是机械和电气接口.主要 ...

  4. 转)mybatis实战教程(mybatis in action),mybatis入门到精通

    mybatis实战教程(mybatis in action),mybatis入门到精通 http://limingnihao.iteye.com/blog/781671 http://blog.csd ...

  5. api文档管理系统合集

    1.Swagger 2.Showdoc 3.EOAPI 4.阿里的RAP 5.postMan 6.docute: 无需编译的文档撰写工具 7.SmartWiki 接口文档在线管理系统 8.SosoAp ...

  6. 将浏览器的内容复制到Linux的文件里面

    直接使用ctrl +c 复制的内容  用ctr +V贴入Linux系统文件的话,格式是乱的 可以使用EOF的方式 [root@centos7 ~]# cat <<EOF >tttt. ...

  7. 解决在V2.0中子组件使用v-model接收来自父组件的值异常

    当我们使用父组件向子组件传值,当子组件中是v-model使用该值时会报:[Vue warn]: Avoid mutating a prop directly since the value will ...

  8. [多线程]线程基础(对象锁、class锁、同步、异步)

    synchronized.volatile.ReentrantLock.concurrent 线程安全:当多个线程访问某一个类(对象或方法)时,这个类始终都能表现出正确的行为,那么这个类(对象或方法) ...

  9. c# 和 java <转载>http://www.cnblogs.com/zhucai/archive/2011/02/16/csharp-compare-java.html

    从语法层面来讲,c# 和 java 是非常相似的. <转载> 这篇文章对C#与Java做一个语言级的对比,方便C#转Java或Java转C#的人有个大致了解.这里大致用C#3.0与Java ...

  10. PHP实现防sql注入

    在查询数据库时需要防止sql注入 实现的方法: PHP自带了方法可以将sql语句转义,在数据库查询语句等的需要在某些字符前加上了反斜线.这些字符是单引号(').双引号(").反斜线(\)与 ...