Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

SQL Query via hdbcli Python module does not return info about command execution

nilsbuer
Explorer
0 Likes
637

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)
0 REPLIES 0