Uses of Class
com.feedzai.commons.sql.abstraction.entry.EntityEntry
-
Packages that use EntityEntry Package Description com.feedzai.commons.sql.abstraction.batch Contains a batch to periodically flushes to the database.com.feedzai.commons.sql.abstraction.engine Contains the database engine core.com.feedzai.commons.sql.abstraction.engine.impl Database specific implementations.com.feedzai.commons.sql.abstraction.entry A database entry implementation. -
-
Uses of EntityEntry in com.feedzai.commons.sql.abstraction.batch
Fields in com.feedzai.commons.sql.abstraction.batch declared as EntityEntry Modifier and Type Field Description protected EntityEntryBatchEntry. entityEntrythe entity dataMethods in com.feedzai.commons.sql.abstraction.batch that return EntityEntry Modifier and Type Method Description EntityEntryBatchEntry. getEntityEntry()Gets the entity data.Methods in com.feedzai.commons.sql.abstraction.batch with parameters of type EntityEntry Modifier and Type Method Description voidAbstractBatch. add(String entityName, EntityEntry ee)Adds the fields to the batch.voidBatchEntry. setEntityEntry(EntityEntry entityEntry)Sets new the entity data.Constructors in com.feedzai.commons.sql.abstraction.batch with parameters of type EntityEntry Constructor Description BatchEntry(String tableName, EntityEntry entityEntry)Creates a new instance ofBatchEntry. -
Uses of EntityEntry in com.feedzai.commons.sql.abstraction.engine
Methods in com.feedzai.commons.sql.abstraction.engine with parameters of type EntityEntry Modifier and Type Method Description voidAbstractDatabaseEngine. addBatch(String name, EntityEntry entry)Add an entry to the batch.voidDatabaseEngine. addBatch(String name, EntityEntry entry)Adds an entry to the batch.protected abstract intAbstractDatabaseEngine. entityToPreparedStatement(DbEntity entity, PreparedStatement ps, EntityEntry entry, boolean useAutoIncs)Translates the given entry entity to the prepared statement.protected intAbstractDatabaseEngine. entityToPreparedStatementForBatch(DbEntity entity, PreparedStatement ps, EntityEntry entry, boolean useAutoIncs)Translates the given entry entity to the prepared statement when used in the context of batch updates.LongAbstractDatabaseEngine. persist(String name, EntityEntry entry)Persists a given entry.LongAbstractDatabaseEngine. persist(String name, EntityEntry entry, boolean useAutoInc)Persists a given entry.LongDatabaseEngine. persist(String name, EntityEntry entry)Persists a given entry.LongDatabaseEngine. persist(String name, EntityEntry entry, boolean useAutoInc)Persists a given entry. -
Uses of EntityEntry in com.feedzai.commons.sql.abstraction.engine.impl
Methods in com.feedzai.commons.sql.abstraction.engine.impl with parameters of type EntityEntry Modifier and Type Method Description protected intDB2Engine. entityToPreparedStatement(DbEntity entity, PreparedStatement ps, EntityEntry entry, boolean useAutoInc)protected intH2Engine. entityToPreparedStatement(DbEntity entity, PreparedStatement ps, EntityEntry entry, boolean useAutoInc)protected intMySqlEngine. entityToPreparedStatement(DbEntity entity, PreparedStatement ps, EntityEntry entry, boolean useAutoInc)protected intOracleEngine. entityToPreparedStatement(DbEntity entity, PreparedStatement originalPs, EntityEntry entry, boolean useAutoInc)protected intPostgreSqlEngine. entityToPreparedStatement(DbEntity entity, PreparedStatement ps, EntityEntry entry, boolean useAutoInc)protected intSqlServerEngine. entityToPreparedStatement(DbEntity entity, PreparedStatement ps, EntityEntry entry, boolean useAutoInc)protected intOracleEngine. entityToPreparedStatementForBatch(DbEntity entity, PreparedStatement originalPs, EntityEntry entry, boolean useAutoInc) -
Uses of EntityEntry in com.feedzai.commons.sql.abstraction.entry
Methods in com.feedzai.commons.sql.abstraction.entry that return EntityEntry Modifier and Type Method Description EntityEntryEntityEntry.Builder. build()
-