我的問題是我想創建一個基於帶參數的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
什麼版本的PB? – NoazDad