h/core/db.py

11 lines
292 B
Python
Raw Normal View History

import os
import sqlite3
2010-03-01 02:32:41 +00:00
def get_db_connection(server, name='skybot.%s.db'):
"returns an sqlite3 connection to a persistent database"
filename = os.path.join(bot.persist_dir, name % server)
return sqlite3.connect(filename, timeout=10)
2010-03-01 02:32:41 +00:00
bot.get_db_connection = get_db_connection