Initial commit for lightweight build

Change-Id: I22c7c64b76327822dc8eb8a40de70b1821b4cac2
Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
diff --git a/lcm/dbbase.py b/lcm/dbbase.py
new file mode 100644
index 0000000..55041b6
--- /dev/null
+++ b/lcm/dbbase.py
@@ -0,0 +1,35 @@
+
+
+class DbException(Exception):
+
+    def __init__(self, message, http_code=404):
+        self.http_code = http_code
+        Exception.__init__(self, message)
+
+class dbbase(object):
+
+    def __init__(self):
+        pass
+
+    def db_connect(self, config):
+        pass
+
+    def db_disconnect(self):
+        pass
+
+    def get_list(self, table, filter={}):
+        pass
+
+    def get_one(self, table, filter={}, fail_on_empty=True, fail_on_more=True):
+        pass
+
+    def create(self, table, indata):
+        pass
+
+    def del_list(self, table, filter={}):
+        pass
+
+    def del_one(self, table, filter={}, fail_on_empty=True):
+        pass
+
+