Package pymysql decorator

Package pymysql decorator

def openClose(fun):

    def run(sql=None):

        coon =pymysql.connect(host='localhost' ,port=3306 ,user='root', password='1234qwer', db='test', charset='utf8')

        cursor = coon.cursor()

        try:

            cursor.execute(fun( sql))

            data = cursor.fetchall()

            coon.commit()

            print(data)

        except Exception as e:

            coon.rollback()

            print ( 'run', str (fun), 'error when the method, the error code:', e)

        finally:

            cursor.close()

            coon.close()

    return run

@openClose

def runSql(sql=None):

    if sql is None:

        sql = 'select * from students1'

    return sql

runSql()

runSql(‘select * from students1‘ where name= ‘tom1’)

Guess you like

Origin www.cnblogs.com/temp11/p/12063832.html