Hi, I'm trying to make an update in a table, however, I would like to have a generic update function.
Is it possible to add a binding feature that kind of expands an object with column names and values?
Something like
{ cor_cod:"18 " cor_codcons:"BR1" cor_codconst:"Y7Y7" cor_coddga:"0416" cor_coddgv:"1" }
, in that, it would bind to something like:
cor_cod = 18, cor_codcons:"BR1", ....
, replacing '?' character.
I've seen this feature in a mysql driver.
Thanks