Uses of Class
org.eclipse.dirigible.database.persistence.PersistenceException
-
Uses of PersistenceException in org.eclipse.dirigible.database.persistence
Methods in org.eclipse.dirigible.database.persistence that throw PersistenceException Modifier and Type Method Description static PersistenceTableModelPersistenceFactory. createModel(Class<? extends Object> clazz)Creates a new Persistence object.static PersistenceTableModelPersistenceFactory. createModel(Object pojo)Creates a new Persistence object.static PersistenceTableModelPersistenceFactory. createModel(String json)Creates a new Persistence object. -
Uses of PersistenceException in org.eclipse.dirigible.database.persistence.parser
Methods in org.eclipse.dirigible.database.persistence.parser that throw PersistenceException Modifier and Type Method Description PersistenceTableModelPersistenceJsonParser. parseModel(String json)Parses the model.PersistenceTableModelPersistenceAnnotationsParser. parsePojo(Class<? extends Object> clazz)Parses the pojo.PersistenceTableModelPersistenceAnnotationsParser. parsePojo(Object pojo)Parses the pojo. -
Uses of PersistenceException in org.eclipse.dirigible.database.persistence.processors.entity
Methods in org.eclipse.dirigible.database.persistence.processors.entity that throw PersistenceException Modifier and Type Method Description intPersistenceDeleteProcessor. delete(Connection connection, PersistenceTableModel tableModel, Class<T> clazz, Object id)Delete.intPersistenceDeleteProcessor. deleteAll(Connection connection, PersistenceTableModel tableModel, Class<T> clazz)Delete all.TPersistenceQueryProcessor. find(Connection connection, PersistenceTableModel tableModel, Class<T> clazz, Object id)Find.List<T>PersistenceQueryProcessor. findAll(Connection connection, PersistenceTableModel tableModel, Class<T> clazz)Find all.protected TPersistenceQueryProcessor. get(Connection connection, PersistenceTableModel tableModel, Class<T> clazz, Object id, String sql)Gets the.ObjectPersistenceInsertProcessor. insert(Connection connection, PersistenceTableModel tableModel, T pojo)Insert.TPersistenceQueryProcessor. lock(Connection connection, PersistenceTableModel tableModel, Class<T> clazz, Object id)Lock.intPersistenceUpdateProcessor. update(Connection connection, PersistenceTableModel tableModel, T pojo)Update. -
Uses of PersistenceException in org.eclipse.dirigible.database.persistence.processors.identity
Methods in org.eclipse.dirigible.database.persistence.processors.identity that throw PersistenceException Modifier and Type Method Description intPersistenceCreateIdentityProcessor. create(Connection connection, PersistenceTableModel tableModel)Creates the.longPersistenceNextValueIdentityProcessor. nextval(Connection connection, String tableName)Nextval.longPersistenceNextValueIdentityProcessor. nextval(Connection connection, PersistenceTableModel tableModel)Nextval. -
Uses of PersistenceException in org.eclipse.dirigible.database.persistence.processors.sequence
Methods in org.eclipse.dirigible.database.persistence.processors.sequence that throw PersistenceException Modifier and Type Method Description intPersistenceCreateSequenceProcessor. create(Connection connection, PersistenceTableModel tableModel)Creates the.intPersistenceDropSequenceProcessor. drop(Connection connection, PersistenceTableModel tableModel)Drop.longPersistenceNextValueSequenceProcessor. nextval(Connection connection, PersistenceTableModel tableModel)Nextval. -
Uses of PersistenceException in org.eclipse.dirigible.database.persistence.processors.table
Methods in org.eclipse.dirigible.database.persistence.processors.table that throw PersistenceException Modifier and Type Method Description intPersistenceCreateTableProcessor. create(Connection connection, PersistenceTableModel tableModel)Creates the table.intPersistenceDropTableProcessor. drop(Connection connection, PersistenceTableModel tableModel)Drop the table.