sogo/Misc/db/tests/helge/fillfolderinfo.py
dev-unix.inverse.qc.ca f18c764ffa see ChangeLog
Monotone-Revision: 9054022ef1ca8aeba6e34842d27d9b94ce002b89

Monotone-Author: dev-unix.inverse.qc.ca
Monotone-Date: 2006-06-15T19:34:10
Monotone-Branch: ca.inverse.sogo
2006-06-15 19:34:10 +00:00

20 lines
456 B
Python
Executable file

#!/usr/bin/python
import pg
USER="agenor"
HOST="localhost"
DB="agenor_fldinfodb"
TABLE="SOGo_folder_info"
db = pg.DB(DB, HOST, 5432, "", "", USER);
print "connection:", db
for i in range(110001, 250000):
SQL=("INSERT INTO %s ( c_foldername, c_tablename, c_dbname ) " + \
"VALUES ( 'privcal_%i', 'agenor_tab_%i', 'agenortabledb' );") % \
( TABLE, i, i, )
if i % 1000 == 0:
print "%i: %s" % ( i, SQL )
db.query(SQL)