dbapi.py
changeset 5473 ee87c5352e63
parent 5443 f299ee54d7e0
parent 5429 5ca1f8fe8a42
child 5508 6718ba5db0eb
--- a/dbapi.py	Wed May 05 18:08:34 2010 +0200
+++ b/dbapi.py	Wed May 05 18:10:33 2010 +0200
@@ -674,10 +674,11 @@
         self._repo.rollback(self.sessionid)
 
     def cursor(self, req=None):
-        """Return a new Cursor Object using the connection.  If the database
-        does not provide a direct cursor concept, the module will have to
-        emulate cursors using other means to the extent needed by this
-        specification.
+        """Return a new Cursor Object using the connection.
+
+        On pyro connection, you should get cursor after calling if
+        load_appobjects method if desired (which you should call if you intend
+        to use ORM abilities).
         """
         if self._closed is not None:
             raise ProgrammingError('Can\'t get cursor on closed connection')