OSDN Git Service

058cbe8f5025ab0192fb427245d28c067620cc33
[rec10/rec10-git.git] / rec10 / trunk / src / rec10d.py
1 #!/usr/bin/python
2 # coding: UTF-8
3 # Rec10 TS Recording Tools
4 # Copyright (C) 2009 Yukikaze
5 import os
6 import timerec
7 import dbSQLite
8 #import dbMySQL
9 import configreader
10 path=str(os.path.dirname(os.path.abspath(__file__)))+"/"
11 global rec10db
12 db=configreader.getpath("db")
13 if db=="MySQL":
14     dbn=configreader.getpath("mysql_dbname")
15     dbh=configreader.getpath("mysql_dbhost")
16     dbu=configreader.getpath("")
17     dbpwd=configreader.getpath("")
18     dbport=int(configreader.getpath(""))
19     #rec10db=dbMySQL.DB_MySQL(dbname,host="localhost",user,passwd,port=3306)
20 rec10db=dbSQLite.DB_SQLite(path+"ch.db")
21 if __name__ == "__main__":
22     timerec.task()
23
24
25