Ejemplo n.º 1
0
    def __init__(self, connection):
        """
        Constructor

        @param connection: the connection to wrap
        @type connection: DB-API 2.0 connection
        """
        BaseConnection.__init__(self, connection)

        self.row_factory = None
Ejemplo n.º 2
0
    def __init__(self, connection):
        """
        Constructor

        @param connection: the connection to wrap
        @type connection: DB-API 2.0 connection
        """
        BaseConnection.__init__(self, connection)

        self.row_factory = None
Ejemplo n.º 3
0
    def __init__(self, connection):
        """
        Constructor

        @param connection: the connection to wrap
        @type connection: apsw.Connection
        """
        BaseConnection.__init__(self, connection)

        self._activecursor = None
Ejemplo n.º 4
0
    def __init__(self, connection):
        """
        Constructor

        @param connection: the connection to wrap
        @type connection: apsw.Connection
        """
        BaseConnection.__init__(self, connection)

        self._activecursor = None