select¶
- select(self, sql)¶
domain: server
language: python
class Task class
Description¶
Use select to execute select SELECT SQL query. To execute the query the
connection pool is used.
The sql parameter is a query to execute.
The method returns a list of records.
Example¶
recs = item.task.execute_select("SELECT * FROM DEMO_CUSTOMERS WHERE ID=41")
for r in rec:
print(r)