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


Python sqlite3.converters方法代碼示例

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


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

示例1: setUp

# 需要導入模塊: import sqlite3 [as 別名]
# 或者: from sqlite3 import converters [as 別名]
def setUp(self):
        self.con = sqlite.connect(":memory:", detect_types=sqlite.PARSE_DECLTYPES)
        self.cur = self.con.cursor()
        self.cur.execute("create table test(i int, s str, f float, b bool, u unicode, foo foo, bin blob, n1 number, n2 number(5))")

        # override float, make them always return the same number
        sqlite.converters["FLOAT"] = lambda x: 47.2

        # and implement two custom ones
        sqlite.converters["BOOL"] = lambda x: bool(int(x))
        sqlite.converters["FOO"] = DeclTypesTests.Foo
        sqlite.converters["WRONG"] = lambda x: "WRONG"
        sqlite.converters["NUMBER"] = float 
開發者ID:vmware-archive,項目名稱:vsphere-storage-for-docker,代碼行數:15,代碼來源:types.py

示例2: tearDown

# 需要導入模塊: import sqlite3 [as 別名]
# 或者: from sqlite3 import converters [as 別名]
def tearDown(self):
        del sqlite.converters["FLOAT"]
        del sqlite.converters["BOOL"]
        del sqlite.converters["FOO"]
        del sqlite.converters["NUMBER"]
        self.cur.close()
        self.con.close() 
開發者ID:vmware-archive,項目名稱:vsphere-storage-for-docker,代碼行數:9,代碼來源:types.py


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