modifié : INITBASE/loader.py
This commit is contained in:
parent
11c04912fd
commit
63b4585520
@ -5,6 +5,10 @@ import sys
|
|||||||
import re
|
import re
|
||||||
import httplib
|
import httplib
|
||||||
|
|
||||||
|
if len(sys.argv) < 3:
|
||||||
|
print("Usage : python loader.py <host> <user> <password> <database>")
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
|
||||||
def exists(site, path):
|
def exists(site, path):
|
||||||
c = httplib.HTTPConnection(site)
|
c = httplib.HTTPConnection(site)
|
||||||
@ -35,7 +39,7 @@ try :
|
|||||||
listeAuteur = {}
|
listeAuteur = {}
|
||||||
listeDatation = {}
|
listeDatation = {}
|
||||||
|
|
||||||
con = mdb.connect('127.0.0.1', 'root', 'l3miashs2015', 'moduleweb',charset='utf8')
|
con = mdb.connect(sys.argv[1], sys.argv[2], sys.argv[3], sys.argv[4],charset='utf8')
|
||||||
cur = con.cursor()
|
cur = con.cursor()
|
||||||
# Suppresion des données existantes dan la bd
|
# Suppresion des données existantes dan la bd
|
||||||
cur.execute("TRUNCATE table auteurs")
|
cur.execute("TRUNCATE table auteurs")
|
||||||
|
Reference in New Issue
Block a user