domain: server
language: python
class Task class
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.
recs = item.task.execute_select("SELECT * FROM DEMO_CUSTOMERS WHERE ID=41")
for r in rec:
print(r)