I'm looking to access the sqlite dot commands in pysql, particularly the
.tables
.schema
.import
commands. However, when I try:
>>> db.execute(".tables")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
pysqlite3.dbapi2.OperationalError: near ".": syntax error
What is the syntax that allows this?