Persist (Java tool): Difference between revisions

Content deleted Content added
No edit summary
UserDoe (talk | contribs)
m Reverted 1 edit by 69.66.56.89 identified as vandalism to last revision by Rufiao. using TW
Line 13:
}}
 
SistPersist is a [[Java_(programming_language)|Java]]-based [[Object-relational_mapping|ORM]]/[[Data_Access_Object|DAO]] tool. It provides only the minimal amount of functionalities necessary to map objects or maps from database queries and to statement parameters.
 
Persist works around a java.sql.Connection object. This means that it does not care about customer query languages (it uses plain [[SQL]] with placeholders, as PreparedStatement objects use), connection pool handling, transaction handling (for the most part), and so on. This also means it is very flexible, and can be integrated with any code that depends on [[JDBC]] (including code that already use another [[Object-relational_mapping|ORM]]/[[Data_Access_Object|DAO]] tool).