71def init(engine_settings):
72 global _connection # pylint: disable=global-statement
74 if 'query_str' not in engine_settings:
75 raise ValueError('query_str cannot be empty')
77 if not engine_settings['query_str'].lower().startswith('select '):
78 raise ValueError('only SELECT query is supported')
80 _connection = mariadb.connect(database=database, user=username, password=password, host=host, port=port)
83def search(query, params) -> EngineResults:
84 query_params = {'query': query}
85 query_to_run = query_str + ' LIMIT {0} OFFSET {1}'.format(limit, (params['pageno'] - 1) * limit)
86 logger.debug("SQL Query: %s", query_to_run)
89 with _connection.cursor() as cur:
90 cur.execute(query_to_run, query_params)
91 col_names = [i[0] for i in cur.description]
93 kvmap = dict(zip(col_names, map(str, row)))
94 res.add(res.types.KeyValue(kvmap=kvmap))