当前位置: 首页>>代码示例>>Python>>正文


Python DBUtil.executeQueryList方法代码示例

本文整理汇总了Python中DBUtil.executeQueryList方法的典型用法代码示例。如果您正苦于以下问题:Python DBUtil.executeQueryList方法的具体用法?Python DBUtil.executeQueryList怎么用?Python DBUtil.executeQueryList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在DBUtil的用法示例。


在下文中一共展示了DBUtil.executeQueryList方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: str

# 需要导入模块: import DBUtil [as 别名]
# 或者: from DBUtil import executeQueryList [as 别名]
w.start(waitTime=60);#命令超时时间设置成60秒
print w.isconnected();#即判断WindPy是否已经登陆成功

############
#starttime='2016-03-01';
#endtime='2016-03-31';
#starttime='2016-05-09';
starttime='2016-06-21';
endtime='2016-06-21';
#几月合约控制
t_yf="6"
#stock_id='10000523';
#STOCK_market='10000523.SH';

sql = "select t.trade_code from PM_QQ_CONFIG t where t_yf="+t_yf+" and t.is_enable=1 order by trade_code"
map_res=DBUtil.executeQueryList(sql)
print(map_res)

# update_sql_base="update PM_QQ_CONFIG t set t.xq_price=#xq_price#,t.xq_fx=#xq_fx# where t.trade_code='#trade_code#' and t.t_yf="+t_yf
# for i in map_res:
#     stock_id = i[0]
#     STOCK_market = stock_id+'.SH'
#     data =w.wsd(STOCK_market,"exe_price,exe_mode",starttime, starttime)
#     #print data;
#     exe_price = data.Data[0][0];
#     exe_mode = data.Data[1][0];
#     print str(exe_price)+","+exe_mode
#     xq_fx="-1"
#     if exe_mode==u'认购' :
#         xq_fx="1"
#     update_sql=update_sql_base.replace("#trade_code#", stock_id).replace('#xq_price#', str(exe_price)).replace('#xq_fx#', xq_fx)
开发者ID:abelweiwencai,项目名称:option,代码行数:33,代码来源:qq_opr.py


注:本文中的DBUtil.executeQueryList方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。