Exemplo n.º 1
0
 def testSqliteDate(self):
     d = sqlite.Date(2004, 2, 14)
     self.cur.execute("insert into test(d) values (?)", (d, ))
     self.cur.execute("select d from test")
     d2 = self.cur.fetchone()[0]
     self.assertEqual(d, d2)
Exemplo n.º 2
0
 def CheckDate(self):
     d = sqlite.Date(2004, 10, 28)
Exemplo n.º 3
0
 def testDate(self):
     d = sqlite.Date(2004, 10, 28)