Example #1
0
    def __init__(self, table, dialect, db):
        """Constructor

        :param table:  table name
        :type table: str
        :param dialect: the sql dialect instance
        :param db: the database connection instance
        """
        if table:
            self._table = table
        self._db = db
        WhereQuery.__init__(self, dialect)
Example #2
0
    def __init__(self, table, dialect, db):

        self._table = table
        self._db = db
        self._set = []
        WhereQuery.__init__(self, dialect)
Example #3
0
 def __init__(self, table, dialect, db,):
     if table:
         self._table = table
     self._db = db
     WhereQuery.__init__(self, dialect)
Example #4
0
    def __init__(self, table, dialect, db):

        self._table = table
        self._db = db
        self._set = []
        WhereQuery.__init__(self, dialect)