本文整理汇总了Python中contact.Contact.get_contact_ldif方法的典型用法代码示例。如果您正苦于以下问题:Python Contact.get_contact_ldif方法的具体用法?Python Contact.get_contact_ldif怎么用?Python Contact.get_contact_ldif使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类contact.Contact
的用法示例。
在下文中一共展示了Contact.get_contact_ldif方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: main
# 需要导入模块: from contact import Contact [as 别名]
# 或者: from contact.Contact import get_contact_ldif [as 别名]
def main():
bd = GestionBD(BaseMySQL.dbName, BaseMySQL.user,
BaseMySQL.passwd, BaseMySQL.host)
if bd.echec:
sys.exit()
while 1:
print "\nQue voulez-vous faire :\n"\
"1) Créer les tables de la base de données\n"\
"2) Supprimer les tables de la base de données ?\n"\
"3) Entrer des employés\n"\
"4) Lister des employés\n"\
"5) Exécuter une requête SQL quelconque\n"\
"6) Enregister sous format ldif\n"\
"7) Terminer ? Votre choix :",
ch = int(raw_input())
if ch == 1:
# Create all the tables described in the thesaurus
bd.creerTables(BaseMySQL.dicoT)
elif ch == 2:
# Drop all the tables described in the thesaurus
bd.supprimerTables(BaseMySQL.dicoT)
elif ch == 3:
# Integration of employees
table = {3: 'employes'}[ch]
enreg = Sauvegarde(bd, table)
while 1:
if enreg.save():
break
elif ch == 4:
# List of all employees
table = {4: 'employes'}[ch]
if bd.executerReq("SELECT * FROM %s" % table):
records = bd.resultatReq()
for rec in records:
for item in rec:
print item,
print
elif ch == 5:
# Any query
req = raw_input("Enter SQL query : ")
if bd.executerReq(req):
print bd.resultatReq()
elif ch == 6:
# Save
fic = raw_input('Enter filename to process: ')
ofi = open(fic, "w")
contact = Contact()
table = {6: 'employes'}[ch]
if bd.executerReq("SELECT * FROM %s" % table):
records = bd.resultatReq()
for rec in records:
contact = Contact(*rec[1:])
ofi.write(contact.get_contact_ldif())
ofi.close()
else:
bd.commit()
bd.close()
break