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


Python sqlite3.Timestamp方法代碼示例

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


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

示例1: CheckTimestamp

# 需要導入模塊: import sqlite3 [as 別名]
# 或者: from sqlite3 import Timestamp [as 別名]
def CheckTimestamp(self):
        ts = sqlite.Timestamp(2004, 10, 28, 12, 39, 35) 
開發者ID:vmware-archive,項目名稱:vsphere-storage-for-docker,代碼行數:4,代碼來源:dbapi.py

示例2: CheckSqliteTimestamp

# 需要導入模塊: import sqlite3 [as 別名]
# 或者: from sqlite3 import Timestamp [as 別名]
def CheckSqliteTimestamp(self):
        ts = sqlite.Timestamp(2004, 2, 14, 7, 15, 0)
        self.cur.execute("insert into test(ts) values (?)", (ts,))
        self.cur.execute("select ts from test")
        ts2 = self.cur.fetchone()[0]
        self.assertEqual(ts, ts2) 
開發者ID:vmware-archive,項目名稱:vsphere-storage-for-docker,代碼行數:8,代碼來源:types.py

示例3: CheckDateTimeSubSeconds

# 需要導入模塊: import sqlite3 [as 別名]
# 或者: from sqlite3 import Timestamp [as 別名]
def CheckDateTimeSubSeconds(self):
        ts = sqlite.Timestamp(2004, 2, 14, 7, 15, 0, 500000)
        self.cur.execute("insert into test(ts) values (?)", (ts,))
        self.cur.execute("select ts from test")
        ts2 = self.cur.fetchone()[0]
        self.assertEqual(ts, ts2) 
開發者ID:vmware-archive,項目名稱:vsphere-storage-for-docker,代碼行數:8,代碼來源:types.py

示例4: CheckDateTimeSubSecondsFloatingPoint

# 需要導入模塊: import sqlite3 [as 別名]
# 或者: from sqlite3 import Timestamp [as 別名]
def CheckDateTimeSubSecondsFloatingPoint(self):
        ts = sqlite.Timestamp(2004, 2, 14, 7, 15, 0, 510241)
        self.cur.execute("insert into test(ts) values (?)", (ts,))
        self.cur.execute("select ts from test")
        ts2 = self.cur.fetchone()[0]
        self.assertEqual(ts, ts2) 
開發者ID:vmware-archive,項目名稱:vsphere-storage-for-docker,代碼行數:8,代碼來源:types.py


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