OSDN Git Service

put DB accessing functions together(dbSQLite.py).
[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 path=str(os.path.dirname(os.path.abspath(__file__)))+"/"
9 global rec10db
10 rec10db=dbSQLite.DB_SQLite(path+"ch.db")
11 if __name__ == "__main__":
12     timerec.task()
13
14
15