|
@@ -14,7 +14,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
@@ -436,7 +436,8 @@ class SQLite(SQLiteDatabaseNewForm):
|
|
|
return self._cur.lastrowid
|
|
|
|
|
|
def _update_tag_lookup(self, nodeid, tid):
|
|
|
- pass
|
|
|
+ sql_lookup = "INSERT INTO LOOKUP(nodeid, tagid) VALUES(?,?)"
|
|
|
+ self._cur.execute(sql_lookup, (nodeid, tid))
|
|
|
|
|
|
def _setnodetags(self, nodeid, tags):
|
|
|
for tag in tags:
|