0
私は基本的に新しいデータベースを作成し、以下に従ってデータベース値入力しようとしています:sqlite3.OperationalError:いいえ、そのようなテーブル:main.wordlistエラー
def createindextables(self):
self.con.execute('create table urllist(url)')
self.con.execute('create table worldlist(word)')
self.con.execute('create table wordlocation(urlid,wordid,location)')
self.con.execute('create table link(fromid integer,toid integer)')
self.con.execute('create table linkwords(wordid,linkid)')
self.con.execute('create index wordidx on wordlist(word)')
self.con.execute('create index urlidx on urllist(url)')
self.con.execute('create index wordurlidx on wordlocation(wordid)')
self.con.execute('create index urltoidx on link(toid)')
self.con.execute('create index urlfromidx on link(fromid)')
self.dbcommit()
をしかし、「sqlite3.OperationalErrorを、それを実行中:そのようなテーブルはありません:main.wordlist Error "が出ています。私はなぜそれが検索データベースを検出することができないか分からない。それは少なくともライブコンパイラから実行する必要があります。私はなぜそれが正しく動作しているのかわかりません。誰も助けることができますか?
それは私が最初に思ったものですが、私はそれを改善するすべての方法を試しましたが、実際にはうまくいきませんでした。私はその時点でオプションがありません –