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


Python DB.__init__方法代碼示例

本文整理匯總了Python中db.DB.__init__方法的典型用法代碼示例。如果您正苦於以下問題:Python DB.__init__方法的具體用法?Python DB.__init__怎麽用?Python DB.__init__使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在db.DB的用法示例。


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

示例1: __init__

# 需要導入模塊: from db import DB [as 別名]
# 或者: from db.DB import __init__ [as 別名]
    def __init__(self,pollId=None):
        DB.__init__(self)
        table = 'autoid'
        if pollId:
            table = 'autoid_%s'%pollId

        self.table = self.database[table]
開發者ID:iazxq,項目名稱:pdpoll,代碼行數:9,代碼來源:autoid.py

示例2: __init__

# 需要導入模塊: from db import DB [as 別名]
# 或者: from db.DB import __init__ [as 別名]
 def __init__(self):
     '''
     Constructor
     '''
     DB.__init__(self)
     self.cfg = Configuration.Instance()  # @UndefinedVariable
     self.sid = get_uuid()
     logging.debug('session uuid:%s' % self.sid)
開發者ID:abstraction21,項目名稱:pyraxshell,代碼行數:10,代碼來源:sessions.py

示例3: __init__

# 需要導入模塊: from db import DB [as 別名]
# 或者: from db.DB import __init__ [as 別名]
 def __init__(self, dbname, source = None):  
    DB.__init__(self, dbname)
    if not VERSION_TABLE_NAME in self._existingTables:
       self.createTable(VERSION_TABLE_NAME, VERSION_FORMAT)
       self.insert( VERSION_TABLE_NAME, DB_VERSION, True  )
    if not RECIPE_TABLE_NAME in self._existingTables:
       self.createTable(RECIPE_TABLE_NAME, RECIPE_FORMAT)
    if not INGRIDIENTS_TABLE_NAME in self._existingTables:
       self.createTable(INGRIDIENTS_TABLE_NAME, INGRIDIENTS_FORMAT)
    if self.getVersion() != DB_VERSION:
       print "Versions not matching"
    self._source = source
    self.ingridients = dict()
    self.code_to_ingridients = dict()
    f = self.fetch(INGRIDIENTS_FETCH_QUERY)
    for ingridient in f:
       key = ingridient[0]
       name = ingridient[1]
       self.ingridients[name] = key
       self.code_to_ingridients[key] = name
    f = self.fetch( "select id from %s order by id DESC limit 1" % RECIPE_TABLE_NAME )
    self._greatesID = f[0][0] if len(f) else 0
開發者ID:avida,項目名稱:cookmastergrabber,代碼行數:24,代碼來源:recipes_db.py

示例4: __init__

# 需要導入模塊: from db import DB [as 別名]
# 或者: from db.DB import __init__ [as 別名]
 def __init__(self):
     DB.__init__(self)
     self.table = self.database.autoid
開發者ID:iazxq,項目名稱:pdedu,代碼行數:5,代碼來源:autoid.py

示例5: __init__

# 需要導入模塊: from db import DB [as 別名]
# 或者: from db.DB import __init__ [as 別名]
 def __init__(self):
     DB.__init__(self)
     self.table = self.database.politics
開發者ID:iazxq,項目名稱:pdedu,代碼行數:5,代碼來源:politics.py

示例6: __init__

# 需要導入模塊: from db import DB [as 別名]
# 或者: from db.DB import __init__ [as 別名]
 def __init__ (self, table_name):
     DB.__init__(self, table_name)
開發者ID:makao007,項目名稱:auto_gene,代碼行數:4,代碼來源:tables.py

示例7: __init__

# 需要導入模塊: from db import DB [as 別名]
# 或者: from db.DB import __init__ [as 別名]
 def __init__(self):
     DB.__init__(self)
     self.table = self.database.dictmeta
開發者ID:iazxq,項目名稱:pdedu,代碼行數:5,代碼來源:dictmeta.py

示例8: __init__

# 需要導入模塊: from db import DB [as 別名]
# 或者: from db.DB import __init__ [as 別名]
 def __init__(self):
     DB.__init__(self)
     self.table = self.database.honorary
開發者ID:iazxq,項目名稱:pdedu,代碼行數:5,代碼來源:honorary.py

示例9: __init__

# 需要導入模塊: from db import DB [as 別名]
# 或者: from db.DB import __init__ [as 別名]
 def __init__(self):
     DB.__init__(self)
     self.table = self.database.admin_log
開發者ID:iazxq,項目名稱:pdedu,代碼行數:5,代碼來源:adminlog.py

示例10: __init__

# 需要導入模塊: from db import DB [as 別名]
# 或者: from db.DB import __init__ [as 別名]
 def __init__(self):
     DB.__init__(self)
     self.table = self.database.jobtitle
開發者ID:iazxq,項目名稱:pdedu,代碼行數:5,代碼來源:jobtitle.py

示例11: __init__

# 需要導入模塊: from db import DB [as 別名]
# 或者: from db.DB import __init__ [as 別名]
 def __init__(self):
     DB.__init__(self)
     self.table = self.database.education_type
開發者ID:iazxq,項目名稱:pdedu,代碼行數:5,代碼來源:educationtype.py

示例12: __init__

# 需要導入模塊: from db import DB [as 別名]
# 或者: from db.DB import __init__ [as 別名]
 def __init__(self):
     DB.__init__(self)
     self.table = self.database.department
開發者ID:iazxq,項目名稱:pdedu,代碼行數:5,代碼來源:department.py

示例13: __init__

# 需要導入模塊: from db import DB [as 別名]
# 或者: from db.DB import __init__ [as 別名]
 def __init__(self):
     DB.__init__()
開發者ID:iazxq,項目名稱:mywebresource,代碼行數:4,代碼來源:article_js_repository.py

示例14: __init__

# 需要導入模塊: from db import DB [as 別名]
# 或者: from db.DB import __init__ [as 別名]
 def __init__(self,pollId):
     DB.__init__(self)
     self.table = self.database['customer_data_%s'%pollId]
開發者ID:iazxq,項目名稱:pdpoll,代碼行數:5,代碼來源:customerdata.py

示例15: __init__

# 需要導入模塊: from db import DB [as 別名]
# 或者: from db.DB import __init__ [as 別名]
 def __init__(self):
     DB.__init__(self)
     self.table = self.database.software
開發者ID:iazxq,項目名稱:pdedu,代碼行數:5,代碼來源:software.py


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