Python
davidxie2
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Python call Mysql PROCEDURE and FUNCTION
#db = pymysql.connect(**PY_MYSQL_CONN_DICT) cursor = db.cursor(cursor=pymysql.cursors.DictCursor) #https://www.cnblogs.com/iber/p/7735002.html cursor.callproc('OPERATION_PROCEDURE',([536...原创 2020-04-10 10:39:34 · 310 阅读 · 0 评论 -
demo of Python call com via win32exts
# -*- coding: utf-8 -*- import win32exts class ACTX(): #W='null' W=None # 构造函数 def __init__(self): win32exts.co_push_start() if self.W is None: self.W = win32exts.create_ax_ob...原创 2020-04-08 19:36:52 · 226 阅读 · 0 评论
分享