aboutsummaryrefslogtreecommitdiff
path: root/lib/dodai/db.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/dodai/db.py')
-rw-r--r--lib/dodai/db.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/dodai/db.py b/lib/dodai/db.py
new file mode 100644
index 0000000..5cbe605
--- /dev/null
+++ b/lib/dodai/db.py
@@ -0,0 +1,30 @@
1# Copyright (C) 2010 Leonard Thomas
2#
3# This file is part of Dodai.
4#
5# Dodai is free software: you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation, either version 3 of the License, or
8# (at your option) any later version.
9#
10# Dodai is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with Dodai. If not, see <http://www.gnu.org/licenses/>.
17
18
19class Db(object):
20 pass
21
22 def __init__(self):
23 self.name = None
24 self.protocol = None
25 self.hostname = None
26 self.port = None
27 self.database = None
28 self.filename = None
29 self.engine = None
30 self.session = None