參數我不知道如何格式化字符串請求邊緣SQL爲了執行需要參數的存儲過程。如果我更改存儲過程不使用參數,只需發送exec sp_III_UpdateOperMgr
它正確執行。想不通的語法調用存儲過程與邊緣SQL
下面是我使用的邊緣-SQL,返回錯誤
語法「找不到存儲的過程sp_III_UpdateOperMgr @ quoteNumber,@採購單號碼'。」
var updateOpMgrSql = edge.func('sql',{
connectionString: GM_CONNECTION_STRING,
source:function() {
/*
exec sp_III_UpdateOperMgr @quoteNumber,@poNumber
*/
},
});
下面是MS SQL Server Management Studio中使用的語法正確執行 exec sp_III_UpdateOperMgr @quoteNumber='121715JM-1',@innovationJobNumber='999999'
看起來像它是在2013年添加在[這裏](https://github.com/tjanczuk/edge-sql/commit/1ddb418a77e391673a5e3d97ee7769a2fba3e73e)。如果它不需要參數,該過程也適用。 –
所以你怎麼打電話updateOpMgrSql?像'updateOpMgrSql({quoteNumber:10,採購單號碼:15}?...' – strickt01
我已經編輯我的答案,你的鏈接... – strickt01