Exemple #1
0
 def query(self, query):
     try:
         self.cursor.execute(query)
         self.db.commit()
     except Exception as e:
         print('%s.%s QUERY ERROR: %s' %
               (self.__class__.__name__, get_current_func_name(), str(e)))
         self.db.rollback()
Exemple #2
0
 def select_db(self, db):
     try:
         self.db.select_db(db)
         print("{} SELECT DATABASE {} SUCCESS!".format(
             get_current_time(), db))
     except Exception as e:
         print('{}.{} SELECT DATABASE ERROR: {}'.format(
             self.__class__.__name__, get_current_func_name(), str(e)))
Exemple #3
0
 def insert(self, table, row):
     try:
         fields = str(self.table_dict[table]).replace("'", '')
         sql = "INSERT INTO {table}{fields} VALUES{data}".format(
             table=table, fields=fields, data=str(row))
         self.cursor.execute(sql)
         self.db.commit()
         print('{} INSERT INTO TABLE {} SUCCESS!'.format(
             get_current_time(), table))
     except IndexError as e:
         print('{} {}.{} INDEX ERROR: {}'.format(get_current_time(),
                                                 self.__class__.__name__,
                                                 get_current_func_name(),
                                                 table, str(e)))
     except Exception as e:
         print('{} {}.{} INSERT TABLE {} ERROR: {}'.format(
             get_current_time(), self.__class__.__name__,
             get_current_func_name(), table, str(e)))
         self.db.rollback()
Exemple #4
0
 def delete_db(self, db):
     try:
         sql = "DROP DATABASE {db}".format(db=db)
         self.cursor.execute(sql)
         self.db_list.append(db)
         print('{} DROP DATABASE {} SUCCESS!'.format(
             get_current_time(), db))
     except Exception as e:
         print('{} {}.{} DROP DATABASE ERROR: {}'.format(
             get_current_time(), self.__class__.__name__,
             get_current_func_name(), str(e)))
Exemple #5
0
 def create_db(self, db):
     try:
         sql = "CREATE DATABASE {db} DEFAULT CHARACTER SET UTF8MB4".format(
             db=db)
         self.cursor.execute(sql)
         self.db_list.append(db)
         print("{} CREATE DATABASE {} SUCCESS!".format(
             get_current_time(), db))
     except Exception as e:
         print('%s.%s CREATE DATABASE ERROR: %s' %
               (self.__class__.__name__, get_current_func_name(), str(e)))
Exemple #6
0
 def delete_table(self, table, condition=None):
     try:
         sql = "DROP TABLE {table}".format(table=table)
         if condition:
             sql = "DELETE FROM {table} WHERE {condition}".format(
                 table=table, condition=condition)
         self.cursor.execute(sql)
         self.db.commit()
     except Exception as e:
         print('%s.%s DELETE ERROR: %s' %
               (self.__class__.__name__, get_current_func_name(), str(e)))
         self.db.rollback()
Exemple #7
0
 def update(self, table, update_dict, condition):
     try:
         update_str = ", ".join(
             [i[0] + ' = ' + i[1] for i in update_dict.items()])
         sql = "UPDATE {table} SET {update_str} WHERE {condition}".format(
             table=table, update_str=update_str, condition=condition)
         self.cursor.execute(sql)
         self.db.commit()
     except Exception as e:
         print('%s.%s UPDTAE ERROR: %s' %
               (self.__class__.__name__, get_current_func_name(), str(e)))
         self.db.rollback()
Exemple #8
0
 def select(self, table, condition):
     try:
         if condition:
             condition = "WHERE {condition}".format(condition=condition)
         sql = "SELECT * FROM {table} {condition}".format(
             table=table, condition=condition)
         print(sql)
         res = self.cursor.execute(sql)
         return res
     except Exception as e:
         print('%s.%s SELECT ERROR: %s' %
               (self.__class__.__name__, get_current_func_name(), str(e)))
         self.db.rollback()
Exemple #9
0
 def create_table(self, table, fields_dict):
     try:
         if table in self.table_dict:
             print(
                 '{} CREATE TABLE {} ERROR: Table {} already exists'.format(
                     get_current_time(), table, table))
         else:
             fields_str = ", ".join([
                 k + ' ' + v + ' NOT NULL' for k, v in fields_dict.items()
             ])
             sql = "CREATE TABLE IF NOT EXISTS {table}({fields_str})".format(
                 table=table, fields_str=fields_str)
             self.cursor.execute(sql)
             self.table_dict.update({table: tuple(fields_dict.keys())})
             print('{} CREATE TABLE {} SUCCESS!'.format(
                 get_current_time(), table))
     except pymysql.Warning as e:
         print(e)
     except Exception as e:
         print('{} {}.{} CREATE TABLE ERROR: {}'.format(
             get_current_time(), self.__class__.__name__,
             get_current_func_name(), str(e)))