예제 #1
0
파일: generic.py 프로젝트: piranna/AntiORM
    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
예제 #2
0
파일: generic.py 프로젝트: piranna/AntiORM
    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
예제 #3
0
    def __init__(self, connection):
        """
        Constructor

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

        self._activecursor = None
예제 #4
0
파일: apsw.py 프로젝트: piranna/AntiORM
    def __init__(self, connection):
        """
        Constructor

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

        self._activecursor = None