Lines Matching refs:cursors
61 cursors = [con.cursor() for x in range(5)]
62 cursors[0].execute("create table test(x)")
64 cursors[0].executemany("insert into test(x) values (?)", [(x,) for x in range(10)])
67 cursors[i].execute(" " * i + "select x from test")
82 # referenced in cursors weren't closed and could provoke "
85 cursors = []
89 cursors.append(cur)
356 Connection.commit() did reset cursors, which made sqlite3
357 to return rows multiple times when fetched from cursors
486 # GH-80254: sqlite3 should not segfault for recursive use of cursors.
487 msg = "Recursive use of cursors not allowed"