| author | Jon Medhurst |
| Wed, 27 Oct 2010 11:48:18 +0100 | |
| branch | graphics-phase-3 |
| changeset 125 | 916c862ecaf1 |
| parent 1 | 2fb8b9db1c86 |
| permissions | -rw-r--r-- |
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