Lines Matching refs:execute
165 cur.execute("select reftest()")
169 cur.execute("select returntext()")
176 cur.execute("select returnunicode()")
183 cur.execute("select returnint()")
190 cur.execute("select returnfloat()")
198 cur.execute("select returnnull()")
205 cur.execute("select returnblob()")
213 cur.execute("select returnlonglong()")
220 cur.execute("select raiseexception()")
228 cur.execute("select isstring(?)", ("foo",))
234 cur.execute("select isint(?)", (42,))
240 cur.execute("select isfloat(?)", (3.14,))
246 cur.execute("select isnone(?)", (None,))
253 cur.execute("select isblob(?)", (buffer("blob"),))
259 cur.execute("select islonglong(?)", (1<<42,))
267 cur.execute("""
277 cur.execute("insert into test(t, i, f, n, b) values (?, ?, ?, ?, ?)",
303 cur.execute("select nostep(t) from test")
311 cur.execute("select nofinalize(t) from test")
320 cur.execute("select excInit(t) from test")
329 cur.execute("select excStep(t) from test")
338 cur.execute("select excFinalize(t) from test")
346 cur.execute("select checkType('str', ?)", ("foo",))
352 cur.execute("select checkType('int', ?)", (42,))
358 cur.execute("select checkType('float', ?)", (3.14,))
364 cur.execute("select checkType('None', ?)", (None,))
371 cur.execute("select checkType('blob', ?)", (buffer("blob"),))
377 cur.execute("delete from test")
379 cur.execute("select mysum(i) from test")
402 self.con.execute("select c2 from t2")
411 self.con.execute("select * from t2")
420 self.con.execute("select c2 from t1")