I have a sql like insert into USER(NAME,AGE) VALUES(:NAME,:AGE)
and I have an object like User(name='gggg',age=10)
how to render the sql get the result like insert into USER(NAME,AGE) VALUES('ggg',10)
I have a sql like insert into USER(NAME,AGE) VALUES(:NAME,:AGE)
and I have an object like User(name='gggg',age=10)
how to render the sql get the result like insert into USER(NAME,AGE) VALUES('ggg',10)