|
版本: |
|
小版本号: |
|
|
|
数据库: |
|
服务器操作系统: |
|
应用服务器: |
|
客户端操作系统: |
|
浏览器: |
|
|
|
KQL的参数用法 是:
Map<String, Object> params = new HashMap<String, Object>();
params.put("id", ContextHelper.getPerson().getID());
Table table = KSQL.select("select p.sPassword from SA_OPPerson p where p = :id", params, "/system/data", null);
问题是:
public static Table select(Map<String, String> sql, List binds, String dataModel)
查询操作
参数: Map<String, String> sql 针对不同数据库的sql语句 List binds 参数列表 String dataModel 执行查询的数据模块
这个的参数列表 binds具体用法是如何写。 比如: 'aa'想用参数的方法传入,怎么写 Table table = SQL.select("select p.sPassword from SA_OPPerson p where p ='aa', null, "/system/data", null);
|
|