在 sql 适配器过程中使用 WL.Server.invokeSQLStatement 返回的结果集
Posted
技术标签:
【中文标题】在 sql 适配器过程中使用 WL.Server.invokeSQLStatement 返回的结果集【英文标题】:use resultset returned by WL.Server.invokeSQLStatement within sql adapter procedure 【发布时间】:2014-03-30 13:38:06 【问题描述】:我想在过程本身的 SQL 适配器过程中使用通过WL.Server.invokeSQLStatement
语句调用 SQL 语句返回的resultSet
。
我已经尝试过我们通常在 SQL 适配器过程中使用result.invocationResult.resultSet[variable].Property
的方式,但它不起作用。
<div data-role="page" id="mainPage">
<div data-role="header">search medicine</div>
<br>
<hr>
<div data-role="content">
<input type="text" value="MEDICINE" id="medicine"><hr>
<input type="text" value="LOCATION" id="location"><hr>
<input type="submit" id="search" value="SEARCH">
</div>
</div>
<div id="itemsList" data-role="page">
<table id="myTable" border="1">
<tr>
<th>Registration No</th>
</tr>
</table>
<div data-role="header">gg</div>
<div data-role="content"></div>
</div>
window.$ = window.jQuery = WLJQ;
function wlCommonInit()
$(document).ready(function()
$("#search").click(function()
GetEmployeeData();
);
);
function GetEmployeeData()
var medicine= $("#medicine").val();
var location=$("#location").val();
alert(medicine);
var invocationData =
adapter : 'ATM',
procedure : 'getStudentInfos',
parameters: [medicine,location]
;
WL.Client.invokeProcedure(invocationData,
onSuccess : loadFeedsSuccess,
onFailure : loadFeedsFailure
);
function loadFeedsSuccess(result)
alert("Hii");
WL.Logger.debug("Feed retrieve success");
if (result.invocationResult.resultSet.length>0)
displayFeeds(result.invocationResult.resultSet);
else
loadFeedsFailure();
function loadFeedsFailure(result)
alert("H");
function displayFeeds(items)
alert("ii");
var table = document.getElementById("myTable");
for(var i=0;i<items.length;i++)
// Create an empty <tr> element and add it to the 1st position of the table:
var row = table.insertRow(i+1);
var cell1 = row.insertCell(0);
// Add some text to the new cells:
cell1.innerHTML = items[i].RegNo;
function LoadResultPage()
$("AppDiv").hide();
$("#itemsList").show();
;
适配器 JavaScript
var selectStatement2 = WL.Server.createSQLStatement("select LocId from location WHERE LocName= ? ");
var selectStatement3 = WL.Server.createSQLStatement("select RegNo from storeloc WHERE LocId= ? ");
function getStudentInfos(Name,Location)
var result=WL.Server.invokeSQLStatement(
preparedStatement : selectStatement2,
parameters : [Location]
);
var a = result.invocationResult.resultSet;
if(a.length>0)
var LocId=a[0].LocId;
return WL.Server.invokeSQLStatement(
preparedStatement : selectStatement3,
parameters : [LocId]
);
在 Chrome 上我收到以下错误
过程调用错误。 Ecma 错误:TypeError:无法读取 未定义的属性“resultSet” (E%3A%5CPRACTICE%5CATM%5Cadapters%5CATM/ATM-impl.js#25).我的第 25 行 是 var a= result.invocationResult.resultSet;
【问题讨论】:
不起作用...太好了。 :) 你在什么情况下尝试它?这是一个技术 QA& 网站。添加代码 sn-ps,添加您遇到的任何错误。预览应用时打开 Chrome 开发工具,您会看到什么?请将此信息添加到问题中。 我已经修改了我的问题 你能提供一个 SQL 脚本来重新创建你的数据库吗? (请注意,我将使用 mysql,而不是 DB2……以防万一那是您的数据库类型) 我的数据库的名称是 'medurge',其中包含 2 个表 1)location 2)storeloc,这些表在上述问题中具有参考意义。location 表具有以下属性 LocId(primary key) varchar 10 , LocName varchar 40. storeloc 表有两个属性 RegNo(primary key) varchar30,LocId varchar10 【参考方案1】:尝试将您的适配器 JavaScript 实现更改为以下内容。
我尝试了一个具有不同表和变量的版本,它对我有用(至少,来自 Worklight Studio 的适配器调用)。
注意我是如何使用locId.resultSet
而不是locId.invocationResult.resultSet
。后者用于客户端,而前者用于服务器端。
还要注意两个函数的分离。
function getStudentInfos(Name,Location)
var locId, a, b;
locId = getlocId(Location);
a = locId.resultSet;
if (a && a.length>0)
b = a[0].LocId;
return WL.Server.invokeSQLStatement(
preparedStatement : selectStatement3,
parameters : [b]
);
function getlocId (Location)
var result = WL.Server.invokeSQLStatement(
preparedStatement : selectStatement2,
parameters : [Location]
);
return result;
注意if
语句...确保也在那里添加一些错误处理...
【讨论】:
看我答案的左边...它显示一个 V 标记。点击它。 是的,我做到了。谢谢你。你能帮我解决我在这里问的第二个问题是链接***.com/questions/22783175/… @user3476186,你的第二个问题现在有回复了。回顾一下。以上是关于在 sql 适配器过程中使用 WL.Server.invokeSQLStatement 返回的结果集的主要内容,如果未能解决你的问题,请参考以下文章
使用 WL.Server.setActiveUser() 找不到方法错误
当应用程序在后台时,不会在 iOS 中调用 WL 推送通知回调
IBM Worklight - 无法显示使用 SQL 适配器检索到的数据