def response(self): return Response(self._get_connection().execute_select( self._compile_select()))
def pluck(self, key, value): return Response(self._get_connection().execute_select( self._compile_select())).pluck(key, value)
def lists(self, columns): return Response(self._get_connection().execute_select( self._compile_select())).tolist(columns)
def data(self): return Response(self._get_connection().execute(self._compile_select())).data()
def response(self): return Response(self._get_connection().execute(self._compile_select(), DictCursor))
def execute(self, sql): return Response(self._get_connection().execute(sql, DictCursor))