Uses of Class
net.sf.persism.Parameters
-
Uses of Parameters in net.sf.persism
Modifier and TypeMethodDescriptionstatic Parameters
Parameters.none()
Represents no Parameters.static Parameters
Static initializer for a new set of Parameters.static Parameters
Static initializer for named parameters.Modifier and TypeMethodDescriptionint
Session.delete
(Class<?> objectClass, Parameters primaryKeyValues) Deletes data from the database based on the specified primary keys providedint
Session.delete
(Class<?> objectClass, SQL whereClause, Parameters parameters) Deletes data from the database based on the specified WHERE clause and parameters<T> T
Session.fetch
(Class<T> objectClass, Parameters primaryKeyValues) Fetch object by primary key(s)<T> T
Session.fetch
(Class<T> objectClass, SQL sql, Parameters parameters) Fetch an object of the specified type from the database.<T> List<T>
Session.query
(Class<T> objectClass, Parameters primaryKeyValues) Query to return any results matching the primary key values provided.<T> List<T>
Session.query
(Class<T> objectClass, SQL sql, Parameters parameters) Query for a list of objects of the specified class using the specified SQL query and parameters.