Why am I getting a syntax error with the following line?
statement = self.sql.execute("DESCRIBE TEST")
I get the following error:
sqlite3.OperationalError: near "DESCRIBE": syntax error
Why am I getting a syntax error with the following line?
statement = self.sql.execute("DESCRIBE TEST")
I get the following error:
sqlite3.OperationalError: near "DESCRIBE": syntax error
DESCRIBE
is not a valid sqlite3 command, use .schema TEST