mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-18 13:05:57 +00:00
Monotone-Revision: 9054022ef1ca8aeba6e34842d27d9b94ce002b89 Monotone-Author: dev-unix.inverse.qc.ca Monotone-Date: 2006-06-15T19:34:10 Monotone-Branch: ca.inverse.sogo
20 lines
456 B
Python
Executable File
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)
|