You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
intcount = db
.update("update person set name=?, email=?, sex=?, age=?, dob=? where pid=?")
.parameters(person.getName(), person.getEmail(), person.isMale(), person.getAge(), person.getDob(), person.getPid())
.count().toBlocking().single();
Instead of the above, Please consider automapping support for a concrete class:
I am actually tasked to write a simple STUB in classes(HibernateTemplate and Session class) TO REPLACE a few EXISTING Hibernate code in Production deployed Projects.
The main purpose for that is to speed up the query speed of business function without or MINIMUM code changes(import replacement only).
Since there is already support for this:
https://github.com/davidmoten/rxjava-jdbc#auto-mappings
Please consider support for a concrete class:
Such support will reduce the amount of manual refactoring done for remodeling of Person object which rename or adding fields.
The text was updated successfully, but these errors were encountered: