Hello, Is there a way in Node-OracleDB driver by which we can pass dynamic filter conditions without specifying bind parameters in query string?
Something like:
var queryStr = "Select * from Employee e";
var bindVars = { name: "John", age: "23" };
connection.execute(queryStr, bindVars);
So, here filter conditions would still get applied during query execution, but without explicitly specifying them into query string.
The use case we have here is, where we have one standard query, which we can use with frequently changing filter conditions which would be accepted as user input dynamically.