當前位置: 首頁>>代碼示例>>Python>>正文


Python defaults.PkName類代碼示例

本文整理匯總了Python中useless.sqlgen.defaults.PkName的典型用法代碼示例。如果您正苦於以下問題:Python PkName類的具體用法?Python PkName怎麽用?Python PkName使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了PkName類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __init__

 def __init__(self, idcol, idtable, name):
     id_ = PkNum(idcol)
     id_.set_fk(idtable)
     tagname = PkName('tag')
     tagname.set_fk('tagnames')
     tagval = Text('value')
     cols = [id_, tagname, tagval]
     Table.__init__(self, name, cols)
開發者ID:BackupTheBerlios,項目名稱:konsultant-svn,代碼行數:8,代碼來源:schema.py

示例2: __init__

 def __init__(self, suite, traits_table):
     tablename = ujoin(suite, 'scripts')
     script_column = PkName('script')
     script_column.set_fk('scriptnames')
     sfile_column = Num('scriptfile')
     sfile_column.set_fk('textfiles')
     script_columns = [script_column, sfile_column]
     _TraitRelation.__init__(self, traits_table, tablename, script_columns)
開發者ID:BackupTheBerlios,項目名稱:paella-svn,代碼行數:8,代碼來源:paella_tables.py

示例3: __init__

 def __init__(self, machines_table):
     machine_col = PkName('machine')
     machine_col.set_fk(machines_table)
     family_col = PkName('family')
     family_col.set_fk('families')
     columns = [machine_col, family_col]
     Table.__init__(self, 'machine_family', columns)
開發者ID:umeboshi2,項目名稱:paella,代碼行數:7,代碼來源:tables.py

示例4: __init__

 def __init__(self, fs_table, mounts_table):
     fs_col = PkName('filesystem')
     fs_col.set_fk(fs_table)
     mnt_name_col = PkName('mnt_name')
     mnt_name_col.set_fk(mounts_table)
     ord_col = Num('ord')
     partition_column = Num('partition')
     columns = [fs_col, mnt_name_col, ord_col, partition_column]
     Table.__init__(self, 'filesystem_mounts', columns)
開發者ID:BackupTheBerlios,項目名稱:paella-svn,代碼行數:9,代碼來源:paella_tables.py

示例5: __init__

 def __init__(self, mach_types_table):
     mtype_col = PkName('machine_type')
     mtype_col.set_fk(mach_types_table)
     pcol = PkName('parent')
     pcol.set_fk(mach_types_table)
     Table.__init__(self, 'machine_type_parent', [mtype_col, pcol])
開發者ID:BackupTheBerlios,項目名稱:paella-svn,代碼行數:6,代碼來源:tables.py


注:本文中的useless.sqlgen.defaults.PkName類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。