‎2020 Dec 18 2:33 PM
If I run an SQL Query Command in Python using hdbcli Python module, I get the result set of the select statement,
but, I do not get an info about the statement itself like "(15 rows selected) * Ok"
Especially for insert this info is important, in order to know how many lines have been inserted.
The statement works fine but does not return any info like "(15 rows selected) * Ok"
sql = 'SELECT * FROM T1'
cursor = conn.cursor()
cursor.execute(sql)
for row in cursor:
print(row)