mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Further integration of the documentation for the sqlite3 module. There's still
quite some content to move over from the pysqlite manual, but it's a start now.
This commit is contained in:
parent
e3c958c33b
commit
82560ebb8d
30 changed files with 654 additions and 3 deletions
15
Doc/lib/sqlite3/countcursors.py
Normal file
15
Doc/lib/sqlite3/countcursors.py
Normal file
|
@ -0,0 +1,15 @@
|
|||
import sqlite3
|
||||
|
||||
class CountCursorsConnection(sqlite3.Connection):
|
||||
def __init__(self, *args, **kwargs):
|
||||
sqlite3.Connection.__init__(self, *args, **kwargs)
|
||||
self.numcursors = 0
|
||||
|
||||
def cursor(self, *args, **kwargs):
|
||||
self.numcursors += 1
|
||||
return sqlite3.Connection.cursor(self, *args, **kwargs)
|
||||
|
||||
con = sqlite3.connect(":memory:", factory=CountCursorsConnection)
|
||||
cur1 = con.cursor()
|
||||
cur2 = con.cursor()
|
||||
print con.numcursors
|
Loading…
Add table
Add a link
Reference in a new issue