class documentation

class CursorWrapper:

Known subclasses: django.db.backends.utils.CursorDebugWrapper

View In Hierarchy

Undocumented

Constant WRAP​_ERROR​_ATTRS Undocumented
Method __enter__ Undocumented
Method __exit__ Undocumented
Method __getattr__ Undocumented
Method __init__ Undocumented
Method __iter__ Undocumented
Method ​_execute Undocumented
Method ​_execute​_with​_wrappers Undocumented
Method ​_executemany Undocumented
Method callproc Undocumented
Method execute Undocumented
Method executemany Undocumented
Instance Variable cursor Undocumented
Instance Variable db Undocumented
WRAP_ERROR_ATTRS =

Undocumented

Value
frozenset(['fetchone', 'fetchmany', 'fetchall', 'nextset'])
def __enter__(self):

Undocumented

def __exit__(self, type, value, traceback):

Undocumented

def __getattr__(self, attr):

Undocumented

def __init__(self, cursor, db):

Undocumented

def __iter__(self):

Undocumented

def _execute(self, sql, params, *ignored_wrapper_args):

Undocumented

def _execute_with_wrappers(self, sql, params, many, executor):

Undocumented

def _executemany(self, sql, param_list, *ignored_wrapper_args):

Undocumented

def callproc(self, procname, params=None, kparams=None):

Undocumented

def execute(self, sql, params=None):

Undocumented

def executemany(self, sql, param_list):

Undocumented

cursor =

Undocumented

db =

Undocumented