123456789101112131415161718192021 |
- #-*- coding: utf-8 -*-
-
- from ledatasource import LeDataSource
- from mosql.db import Database
- from Lodel.utils.mosql import *
-
- ## SQL DataSource for LeObject
- class LeDataSourceSQL(LeDataSource):
-
- def __init__(self, options=None):
- super(LeDataSourceSQL, self).__init__()
-
- self.options = options
-
- ## @brief search for a collection of objects
- # @param emclass
- # @param emtype
- # @param filters list : list of tuples formatted as (FIELD, OPERATOR, VALUE)
- # @param relational_filters
- def get(self, emclass, emtype, field_list, filters, relational_filters):
- pass
|