Hello,
I would like to pass the parameters as a variable as these are dynamic values. For example,
var sQuery = 'SELECT * FROM <TABLE> WHERE <col1>=? AND <col2> = ? and <col3>=?'
var aValues = ['value1, value2, value3']
var oConnection = $.hdb.getConnection();
oConnection.executeQuery(sQuery , aValues );
This gives me an error "Parameter 1 is not of type that can be processed!"
Best Regards
Srini