本文整理汇总了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)