I can successfully connect to the Microsoft Access database; however, I am having trouble understanding how to create an Access Database object for a query. Once created, I am trying to verify it as an object in the database. I tried a few of the options out there but it does not seem to be creating any query object. Any help is appreciated.
How to create permanent MS Access Query by Python 3.5.1?
Did not work for me and I am not sure why.
sql ="""\
{CREATE AND NAME VIEW AS A SELECT STATEMENT}
"""
csr.execute(sql)
con.close()
del csr
I would expect to see the query object in the database where I can confirm its design.