No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ledatasourcesql.py 495B

1234567891011121314151617
  1. #-*- coding: utf-8 -*-
  2. from ledatasource import LeDataSource
  3. ## SQL DataSource for LeObject
  4. class LeDataSourceSQL(LeDataSource):
  5. def __init__(self, options=None):
  6. self.options = options
  7. ## @brief search for a collection of objects
  8. # @param emclass
  9. # @param emtype
  10. # @param filters list : list of tuples formatted as (FIELD, OPERATOR, VALUE)
  11. # @param relational_filters
  12. def get(self, emclass, emtype, field_list, filters, relational_filters):
  13. pass