diff --git a/netdb.i2p2/fixedapp.py b/netdb.i2p2/fixedapp.py index 8bfcc23300e0a262417ceb1f84fc99518661e18f..ddaa4e6ea46f005b3b22a13fdfbb9568d4487f7e 100644 --- a/netdb.i2p2/fixedapp.py +++ b/netdb.i2p2/fixedapp.py @@ -36,9 +36,9 @@ import pyodbc # db format # -# table client ipaddress, time of access, file list index +# table client ipaddress, time of access # -# table html index, time of creation, html +# table html index, time of creation # @@ -52,15 +52,13 @@ def checkdatabase(): try: cur.execute("select * from client") except pyodbc.Error: - #cur.execute("create table peer (ip string, time string, index string)") - print ("Creating new table 'client'") + #print ("Creating new table 'client'") cur.execute("create table client (ip string, whn float)") cnxn.commit() try: cur.execute("select * from entry") except pyodbc.Error: - #cur.execute("create table peer (ip string, time string, index string)") - print ("Creating new table 'entry'") + #print ("Creating new table 'entry'") cur.execute("create table entry (whn float, wht string)") cnxn.commit() cnxn.close()