Hi everyone, its my first time to use pythonanywhere,i have a finished project with bottle+sqlite3. I have no idea how to do with my database. I have uploaded it into my files under mysite,and if i want to connect the database
con = sqlite3.connect('imdb.db')
cur = con.cursor()
cur.execute("SELECT FilmID FROM Filmbilder")
the error:
Error no such table: Filmbilder:
Traceback (most recent call last):
File "/home/jiaxiang/mysite/my.py", line 64, in <module>
sys.exit(1)
SystemExit: 1
thanks for your answer!