本文整理匯總了Python中app.model.DBSession.getRegId方法的典型用法代碼示例。如果您正苦於以下問題:Python DBSession.getRegId方法的具體用法?Python DBSession.getRegId怎麽用?Python DBSession.getRegId使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類app.model.DBSession
的用法示例。
在下文中一共展示了DBSession.getRegId方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: setAltId
# 需要導入模塊: from app.model import DBSession [as 別名]
# 或者: from app.model.DBSession import getRegId [as 別名]
def setAltId(self,value):
try:
regConfig = DBSession().query(MolRegConfig).get(value)
self.mol_reg_id = regConfig.getRegId()
except Exception,e:
log.exception(e)
raise Exception("Configure your registry id prefix first using the 'Configure' link.")
示例2: setUp
# 需要導入模塊: from app.model import DBSession [as 別名]
# 或者: from app.model.DBSession import getRegId [as 別名]
def setUp(self):
super(TestStudy,self).setUp()
self.program=DBSession().query(Program).first()
self.org=DBSession().query(Org).first()
self.user = User.by_user_name('studyuser')
mrc = DBSession().query(MolRegConfig).first()
self.prefix_id = mrc.id_prefix
s=Study()
s.title = 'Test title'
s.description = 'Test description'
s.uuid = uuid.uuid4().hex
s.created_by_id = self.user.user_id
s.program_id = self.program.program_id
s.org_id = self.org.org_id
DBSession().add(s)
DBSession().flush()
self.study_id = s.id
benz=Mol()
benz.mol_struct = benzene
benz.mol_reg_id = mrc.getRegId()
benz = mergeMol(benz)
imid=Mol()
imid.mol_struct = imidazole
imid.mol_reg_id = mrc.getRegId()
imid = mergeMol(imid)
transaction.commit()
self.study = Study.byId(self.study_id)
self.program=DBSession().query(Program).first()
self.org=DBSession().query(Org).first()
self.user = User.by_user_name('studyuser')