SEESenv/web/hgbook/load_elements.py
author amit@thunder
Sun, 21 Feb 2010 18:00:14 +0530
changeset 7 e9bf8b47a809
parent 2 52d12eb31c30
permissions -rwxr-xr-x
Added /index because only / does not seem to work

#!/usr/bin/env python
#
# This script updates the contents of the comments_element table.
# It's fugly, but a lot less painful than trying to use Django's
# fixtures system.

import os, sys
sys.path.append(os.path.dirname(__file__))
import dbutil

os.system('make -C ../../en all-ids.dat')

conn = dbutil.connect()
c = conn.cursor()
c.execute('''load data local infile "../../en/all-ids.dat" replace
             into table comments_element
             fields terminated by "|"''')
print 'Database updated'