-
Interfaces Interface Description com.feedzai.commons.sql.abstraction.FailureListener UseBatchListenerinstead.
-
Methods Method Description com.feedzai.commons.sql.abstraction.batch.AbstractBatch.convertToBatchListener(FailureListener) TheFailureListeneris deprecated and this method will be removed once it is removed.com.feedzai.commons.sql.abstraction.batch.DefaultBatch.create(DatabaseEngine, String, int, long, long, FailureListener) com.feedzai.commons.sql.abstraction.ddl.DbFk.Builder.addForeignColumn(String...) a "foreign key" is actually composed from the local columns of the table where it is defined (the child table); this name is wrong and will eventually be removed ─ useDbFk.Builder.addReferencedColumn(String...)instead.com.feedzai.commons.sql.abstraction.ddl.DbFk.Builder.addForeignColumns(Collection<String>) a "foreign key" is actually composed from the local columns of the table where it is defined (the child table); this name is wrong and will eventually be removed ─ useDbFk.Builder.addReferencedColumns(Collection)instead.com.feedzai.commons.sql.abstraction.ddl.DbFk.Builder.foreignTable(String) a "foreign key" is actually composed from the local columns of the table where it is defined (the child table); this name is wrong and will eventually be removed ─ useDbFk.Builder.referencedTable(String)instead.com.feedzai.commons.sql.abstraction.ddl.DbFk.getForeignColumns() a "foreign key" is actually composed from the local columns of the table where it is defined (the child table); this name is wrong and will eventually be removed ─ useDbFk.getReferencedColumns()instead.com.feedzai.commons.sql.abstraction.ddl.DbFk.getForeignTable() a "foreign key" is actually composed from the local columns of the table where it is defined (the child table); this method was used to get the name of the referenced table, which is the parent table, thus the name of the method is wrong and it will eventually be removed ─ useDbFk.getReferencedTable()instead.com.feedzai.commons.sql.abstraction.engine.DatabaseEngine.createBatch(int, long, String, FailureListener) com.feedzai.commons.sql.abstraction.engine.DatabaseEngineRuntimeException.isRetryable() useDatabaseEngineRetryableRuntimeExceptioninstead.com.feedzai.commons.sql.abstraction.exceptions.DatabaseEngineRetryableRuntimeException.isRetryable() only implemented here to avoid breaking changes with the availability of this method in the super class.