您现在的位置: 万盛学电脑网 >> 程序编程 >> 网络编程 >> 编程语言综合 >> 正文

在ironpython中利用装饰器执行SQL操作的例子

作者:佚名    责任编辑:admin    更新时间:2022-06-22

   这篇文章主要介绍了在ironpython中利用装饰器执行SQL操作的例子,文章中以操作MySQL为例,需要的朋友可以参考下

  比较喜欢python的装饰器, 试了下一种用法,通过装饰器来传递sql,并执行返回结果

  这个应用应该比较少

  为了方便起见,直接使用了ironpython, 连接的mssql server

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 # -*- coding: utf-8 -*- import clr clr.AddReference('System.Data') from System.Data import * from functools import wraps   conn_str = "server=localhost;database=DB_TEST;uid=sa;password=sa2008"   def mssql(sql): def handler_result(rs): rst = [] while rs.Read(): rst.Add(rs[0]) return rst     def decorator(fn): @wraps(fn) def wrapper(*args, **kwargs): TheConnection = SqlClient.SqlConnection(conn_str) TheConnection.Open() try: MyAction = SqlClient.SqlCommand(sql, TheConnection) MyReader = MyAction.ExecuteReader() except Exception,ex: raise AssertionError(ex) rst_data = handler_result(MyReader) kwargs["sql_rst"] = rst_data result = fn(*args, **kwargs) MyReader.Close() TheConnection.Close() return result return wrapper return decorator       @mssql(sql="Select getdate()") def get_data(sql_rst=""): print sql_rst[0]   get_data()

  算是为了好玩吧,回看了下,可能实际用的机会不多

        注< >:更多精彩教程请关注三联编程