我的问题是我正在尝试基于带有参数的 SP 动态创建数据窗口。我可以从没有参数的 SP 动态创建数据窗口,但是使用 parms 我收到此错误 - “无法获取过程参数”
请问有什么建议吗?
我的代码:
sql_syntax = "execute starsdba.SP_PROVIDER_LIST; as_Sql= From Users"
presentation_str = "style(type=grid)"
presentation_str = &
"style( type=Grid &
Horizontal_spread = 25 &
Header_bottom_margin = 15 &
Header_top_margin = 15 ) &
datawindow( units=2 &
Color= 67108864) &
column( Font.Face='system' &
Font.Height=-10 &
Font.Weight=700) &
text( Font.Face='system' &
Font.Height=-10 &
Font.Weight=700 &
Border=6)"
dwsyntax_str = SQLCA.SyntaxFromSQL(sql_syntax, &
presentation_str, ERRORS)
IF Len(ERRORS) > 0 THEN
MessageBox("Caution", &
"SyntaxFromSQL caused these errors: " + ERRORS)
RETURN
END IF