我曾经在Visual Basic中使用此代码:
rpt.ParameterFields.GetItemByName("RowDate").AddCurrentValue CDate("2010-03-19")
而且我无法弄清楚我必须将日期换成COM才能食用。
有什么建议吗?
答案 0 :(得分:1)
好的,找到了解决方案。贝娄是等效的蟒蛇:
rpt.ParameterFields.GetItemByName("RowDate").AddCurrentValue(datetime.datetime.strptime('2010-03-19', "%Y-%m-%d").date())
方法与以下相同: Python date string to date object