Hello,
We have a scenario, where we connect to an oracle DB.
The customer is requesting the usage of bind variables for parameters to improve the performance.
We have successfully connected to the Oracle DB and are running many SQL statements on it.
But I could not find a way to work with data bindings.
In Java it would look like that:
"String stmt = „UPDATE IF_BP SET STATUS = 'P' WHERE TARGET = ‘F’ AND TRANSFERID = ?”;
PreparedStatement s1 = con.prepareStatement(stmt);
…
s1.setInt(1, 297);
s1.executeUpdate();
…"
Is there a way to use data bindings with B1if? We are using version 1.22.28.
Regards,
Maik