[SQL-CVS] SQLObject/SQLObject DBConnection.py,1.30,1.31
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
|
From: <ian...@us...> - 2003-04-29 09:36:29
|
Update of /cvsroot/sqlobject/SQLObject/SQLObject
In directory sc8-pr-cvs1:/tmp/cvs-serv13462/SQLObject
Modified Files:
DBConnection.py
Log Message:
Took out SQLite's concurrency protection, because it doesn't seem
necessary anymore. Not entirely sure about this, though.
Index: DBConnection.py
===================================================================
RCS file: /cvsroot/sqlobject/SQLObject/SQLObject/DBConnection.py,v
retrieving revision 1.30
retrieving revision 1.31
diff -C2 -d -r1.30 -r1.31
*** DBConnection.py 29 Apr 2003 09:30:03 -0000 1.30
--- DBConnection.py 29 Apr 2003 09:36:25 -0000 1.31
***************
*** 588,598 ****
return not not result
- def iterSelect(self, select):
- """
- SQLite doesn't support concurrent access, so we do the entire
- SELECT right away and iterate over a list of objects.
- """
- return iter(list(DBAPI.iterSelect(self, select)))
-
########################################
## File-based connections
--- 588,591 ----
|