...
Code Block | ||
---|---|---|
| ||
var table = "productsp"; pjs.define("productsp_out", { type: 'data structure', qualified: true, dim: 50, extName: table }); pjs.define("searchQuery", { type: "char", length: 30 }); pjs.clear(productsp_out); searchQuery = '%' + 'Garmin' + '%'; var c1 = pjs.prepare("select * from " + table + " where prdesc like ? order by prid"); pjsc1.bindParameters(c1, [ [searchQuery.trim(), pjs.SQL_PARAM_INPUT] ]); pjsc1.execute(c1); pjs.fetch(c1, productsp_out, 50); pjsc1.close(c1); |
Requirements
This API requires the Profound.js Connector module.