|
本帖最后由 594狂 于 2017-3-3 17:37 编辑
我自行創建了一個MSSQL的查詢Action(使用調用預存程序的方式),代碼如下
- public static Table control_list_select() throws NamingException, SQLException {
- // 取得連線
- Connection conn = ModelUtils.getConnectionInTransaction("/dfs/dfs1/data");
- // 設置sql語句
- HashMap<String, String> sqlMap = new HashMap<String, String>();
- sqlMap.put(SQL.DEFAULT_DB_NAME, "{ call S_production_controllist_table }");
- Table table = SQL.select(sqlMap, null, "/dfs/dfs1/data");
- System.out.println("table轉換xml資訊=" + new com.justep.system.transform.Table2Row().transform(table, null).asXML());
- return table;
- }
复制代码
然後我想把這個action加入到ontology文件中的標準動作設置,方便未來用datatable or grid組件直接綁定bizData
具體要怎麼做?
|
|