class documentation

class VariableWrapper:

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):

Undocumented

def __init__(self, var):

Undocumented

def __setattr__(self, key, value):

Undocumented

def bind_parameter(self, cursor):

Undocumented

var =

Undocumented