My function definition looks something like this:
def chk_table(table_name):
.......
.......
conn.execute('SELECT * FROM table_name ;')
print("The response for query : SELECT * FROM table_name; === ",repr(conn.response) )
return
I get the below error:
Exscript.protocols.exception.InvalidCommandException: Device said:
SELECT * FROM table_name;
Error: no such table: table_name
Can anybody help me to resolve this issue?