class documentation

class VariableWrapper: (source)

View In Hierarchy

An adapter class for cursor variables that prevents the wrapped object from being converted into a string when used to instantiate an OracleParam. This can be used generally for any other object that should be passed into Cursor.execute as-is.

Method __getattr__ Undocumented
Method __init__ Undocumented
Method __setattr__ Undocumented
Method bind_parameter Undocumented
Instance Variable var Undocumented
def __getattr__(self, key): (source)

Undocumented

def __init__(self, var): (source)

Undocumented

def __setattr__(self, key, value): (source)

Undocumented

def bind_parameter(self, cursor): (source)

Undocumented

Undocumented