• Home
  • Raw
  • Download

Lines Matching refs:execute

178         cur.execute("select reftest()")
182 cur.execute("select returntext()")
189 cur.execute("select returnunicode()")
196 cur.execute("select returnint()")
203 cur.execute("select returnfloat()")
211 cur.execute("select returnnull()")
218 cur.execute("select returnblob()")
225 cur.execute("select returnlonglong()")
232 cur.execute("select raiseexception()")
238 cur.execute("select isstring(?)", ("foo",))
244 cur.execute("select isint(?)", (42,))
250 cur.execute("select isfloat(?)", (3.14,))
256 cur.execute("select isnone(?)", (None,))
262 cur.execute("select isblob(?)", (memoryview(b"blob"),))
268 cur.execute("select islonglong(?)", (1<<42,))
274 cur.execute("select spam(?, ?)", (1, 2))
283 cur.execute("""
292 cur.execute("insert into test(t, i, f, n, b) values (?, ?, ?, ?, ?)",
316 cur.execute("select nostep(t) from test")
322 cur.execute("select nofinalize(t) from test")
329 cur.execute("select excInit(t) from test")
336 cur.execute("select excStep(t) from test")
343 cur.execute("select excFinalize(t) from test")
349 cur.execute("select checkType('str', ?)", ("foo",))
355 cur.execute("select checkType('int', ?)", (42,))
361 cur.execute("select checkTypes('int', ?, ?)", (42, 24))
367 cur.execute("select checkType('float', ?)", (3.14,))
373 cur.execute("select checkType('None', ?)", (None,))
379 cur.execute("select checkType('blob', ?)", (memoryview(b"blob"),))
385 cur.execute("delete from test")
387 cur.execute("select mysum(i) from test")
410 self.con.execute("select c2 from t2")
419 self.con.execute("select * from t2")
424 self.con.execute("select c2 from t1")