本文整理匯總了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)
示例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)
示例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)
示例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)