Uses of Class
net.sf.persism.Parameters
Packages that use Parameters
-
Uses of Parameters in net.sf.persism
Methods in net.sf.persism that return ParametersModifier and TypeMethodDescriptionstatic ParametersParameters.none()Represents no Parameters.static ParametersStatic initializer for a new set of Parameters.static ParametersStatic initializer for named parameters.Methods in net.sf.persism with parameters of type ParametersModifier and TypeMethodDescriptionintSession.delete(Class<?> objectClass, Parameters primaryKeyValues) Deletes data from the database based on the specified primary keys providedintSession.delete(Class<?> objectClass, SQL whereClause, Parameters parameters) Deletes data from the database based on the specified WHERE clause and parameters<T> TSession.fetch(Class<T> objectClass, Parameters primaryKeyValues) Fetch object by primary key(s)<T> TSession.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.