本文整理汇总了Python中sgp.model.DBSession.flush方法的典型用法代码示例。如果您正苦于以下问题:Python DBSession.flush方法的具体用法?Python DBSession.flush怎么用?Python DBSession.flush使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sgp.model.DBSession
的用法示例。
在下文中一共展示了DBSession.flush方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: setUp
# 需要导入模块: from sgp.model import DBSession [as 别名]
# 或者: from sgp.model.DBSession import flush [as 别名]
def setUp(self):
"""Prepare model test fixture."""
try:
new_attrs = {}
new_attrs.update(self.attrs)
new_attrs.update(self.do_get_dependencies())
self.obj = self.klass(**new_attrs)
DBSession.add(self.obj)
DBSession.flush()
return self.obj
except:
DBSession.rollback()
raise
示例2: importar
# 需要导入模块: from sgp.model import DBSession [as 别名]
# 或者: from sgp.model.DBSession import flush [as 别名]
def importar(self, id_tipo, id_fase):
transaction.begin()
ti = self.getById(id_tipo)
nuevo = TipoItem()
nuevo.nombre =ti.nombre
nuevo.id_fase = id_fase
DBSession.add(nuevo)
DBSession.flush()
for c in ti.campos:
cn = Campo()
cn.nombre = c.nombre
cn.tipo_dato = c.tipo_dato
nuevo.campos.append(cn)
DBSession.merge(nuevo)
DBSession.flush()
transaction.commit()