Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7410509
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T06:14:40+00:00 2026-05-29T06:14:40+00:00

I am basically trying to create a new database and enter the database values

  • 0

I am basically trying to create a new database and enter the database values according to the following:

 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()

But while running it “sqlite3.OperationalError: no such table: main.wordlist Error” is coming up. I am not sure why its not able to detect the search database. It should at least run from the live compiler. I don’t know why its not working properly. Can anyone help?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T06:14:40+00:00Added an answer on May 29, 2026 at 6:14 am

    It might by a typo: is worldlist supposed to be wordlist?:
    If so, change the second line to:

    self.con.execute('create table wordlist(word)')
    

    (Otherwise, the line

    self.con.execute('create index wordidx on wordlist(word)')
    

    might be raising an error since wordlist had not been defined.


    Just as a sanity check, you might try running

    import sqlite3
    connection = sqlite3.connect(':memory:')
    cursor = connection.cursor()
    cursor.execute('create table urllist(url)')
    cursor.execute('create table wordlist(word)')
    

    This code should work. You might then try comparing what’s different about this code than yours.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've been learning asp.net mvc 3. So, basically I'm trying to create a new
Basically what the title says. I created a new MVC application. I'm trying to
I recently came across this in some code - basically someone trying to create
Basically I'm trying to create an implementation of simulated annealing for the multidimensional knapsack
I am trying to create something in Perl that is basically like the Unix
I am trying to create a rule for snort to basically log any packets
Basically, I'm trying to create an object of unique objects, a set. I had
I'm trying to create a function that searches up a WebControl's parent-child relationship (basically
I'm trying to create a Textmate snippet, but have run into some difficulties. Basically,
(source: flickr.com ) Hi again everyone :) So today I'm trying to basically create

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.