mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-10 08:52:21 +03:00
new feature added(returning single element) to db service and some minor bug fixes
This commit is contained in:
parent
9790371289
commit
e501afad33
1 changed files with 24 additions and 4 deletions
|
@ -22,6 +22,7 @@ class AhenkDbService(object):
|
|||
self.check_and_create_table('policy',['id INTEGER PRIMARY KEY AUTOINCREMENT','type TEXT','version TEXT','name TEXT'])
|
||||
self.check_and_create_table('profile',['id INTEGER','create_date TEXT','label TEXT','description TEXT','overridable INTEGER','active INTEGER','deleted INTEGER','profile_data BLOB','modify_date TEXT'])
|
||||
self.check_and_create_table('plugin',['version TEXT','name TEXT','description TEXT'])
|
||||
self.check_and_create_table('registration', ['jid TEXT', 'password TEXT', 'registered INTEGER', 'dn TEXT', 'params TEXT', 'timestamp TEXT'])
|
||||
|
||||
|
||||
def connect(self):
|
||||
|
@ -75,7 +76,9 @@ class AhenkDbService(object):
|
|||
def findByProperty(self):
|
||||
# Not implemented yet
|
||||
pass
|
||||
|
||||
def select(self,table_name, cols="*", criteria="", orderby=""):
|
||||
print("seleeeeeeect")
|
||||
if self.cursor:
|
||||
try:
|
||||
if not cols == "*":
|
||||
|
@ -89,6 +92,7 @@ class AhenkDbService(object):
|
|||
sql += orderby
|
||||
|
||||
self.cursor.execute(sql)
|
||||
|
||||
rows = self.cursor.fetchall()
|
||||
return rows
|
||||
except Exception as e:
|
||||
|
@ -96,6 +100,22 @@ class AhenkDbService(object):
|
|||
else:
|
||||
self.logger.warning("Could not select table cursor is None! Table Name : " + str(table_name))
|
||||
|
||||
def select_one_result(self, table_name, col, criteria=''):
|
||||
if self.cursor:
|
||||
try:
|
||||
sql = 'SELECT ' + col + ' FROM ' + table_name
|
||||
if criteria != '':
|
||||
sql += ' where '
|
||||
sql += criteria
|
||||
self.cursor.execute(sql)
|
||||
row = self.cursor.fetchone()
|
||||
if row is not None:
|
||||
return row[0]
|
||||
except Exception as e:
|
||||
raise
|
||||
else:
|
||||
self.logger.warning('Could not select table cursor is None! Table Name : ' + str(table_name))
|
||||
|
||||
def close(self):
|
||||
try:
|
||||
self.cursor.close()
|
||||
|
|
Loading…
Reference in a new issue