File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ def __init__(self):
21
21
- maintain a class level access to the database
22
22
connection object
23
23
"""
24
- self .conn = sqlite3 .connect ("searchengine.db" )
24
+ self .conn = sqlite3 .connect ("searchengine.sqlite3" , autocommit = True )
25
25
cur = self .conn .cursor ()
26
26
res = cur .execute ("SELECT name FROM sqlite_master WHERE name='IdToDoc'" )
27
27
tables_exist = res .fetchone ()
@@ -33,7 +33,7 @@ def __init__(self):
33
33
34
34
def index_document (self , document ):
35
35
"""
36
- Returns - <sqlite3.Cursor object>
36
+ Returns - string
37
37
Input - str: a string of words called document
38
38
----------
39
39
Indexes the document. It does this by performing two
@@ -61,7 +61,7 @@ def index_document(self, document):
61
61
reverse_idx = json .dumps (reverse_idx )
62
62
cur = self .conn .cursor ()
63
63
result = cur .execute ("UPDATE WordToId SET value = (?) WHERE name='index'" , (reverse_idx ,))
64
- return (result )
64
+ return ("index successful" )
65
65
66
66
def _add_to_IdToDoc (self , document ):
67
67
"""
You can’t perform that action at this time.
0 commit comments