Skip to content

Commit f26a268

Browse files
committed
updated return statement of index method and added autocommit to db)
1 parent 8d04670 commit f26a268

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Search_Engine/backend.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def __init__(self):
2121
- maintain a class level access to the database
2222
connection object
2323
"""
24-
self.conn = sqlite3.connect("searchengine.db")
24+
self.conn = sqlite3.connect("searchengine.sqlite3", autocommit=True)
2525
cur = self.conn.cursor()
2626
res = cur.execute("SELECT name FROM sqlite_master WHERE name='IdToDoc'")
2727
tables_exist = res.fetchone()
@@ -33,7 +33,7 @@ def __init__(self):
3333

3434
def index_document(self, document):
3535
"""
36-
Returns - <sqlite3.Cursor object>
36+
Returns - string
3737
Input - str: a string of words called document
3838
----------
3939
Indexes the document. It does this by performing two
@@ -61,7 +61,7 @@ def index_document(self, document):
6161
reverse_idx = json.dumps(reverse_idx)
6262
cur = self.conn.cursor()
6363
result = cur.execute("UPDATE WordToId SET value = (?) WHERE name='index'", (reverse_idx,))
64-
return(result)
64+
return("index successful")
6565

6666
def _add_to_IdToDoc(self, document):
6767
"""

0 commit comments

Comments
 (0)