Home | History | Annotate | Download | only in test

Lines Matching refs:cur

142         cur = con.cursor()
143 cur.execute("create table test(x)")
144 cur.execute("insert into test(x) values (5)")
145 cur.execute("select 1 union select 2 union select 3")
149 cur.fetchall()
154 self.cur = self.con.cursor()
157 self.cur.execute("create table test(i)")
158 self.cur.execute("insert into test(i) values (5)")
159 self.cur.execute("drop table test")
162 self.cur.execute("create table test(i)")
163 self.cur.execute("insert into test(i) values (5)")
164 self.cur.execute("pragma count_changes=1")
167 self.cur.close()