Remove the deprecated overload.

This commit is contained in:
Ray J. Greenwell
2024-11-13 16:27:00 -08:00
parent a136a8f19b
commit 5708f9318e
2 changed files with 0 additions and 9 deletions
@@ -39,11 +39,6 @@ public abstract class BaseLiaison implements DatabaseLiaison
// from DatabaseLiaison
public abstract boolean isTransientException (SQLException sqe);
@Deprecated
public int lastInsertedId (Connection conn, String table, String column) throws SQLException {
return (int)lastInsertedId(conn, null, table, column);
}
// from DatabaseLiaison
public long lastInsertedId (Connection conn, Statement istmt, String table, String column)
throws SQLException
@@ -44,10 +44,6 @@ public interface DatabaseLiaison
*/
public boolean isTransientException (SQLException sqe);
/** @deprecated Use version that takes the insert statement. */
@Deprecated
public int lastInsertedId (Connection conn, String table, String column) throws SQLException;
/**
* Attempts as dialect-agnostic an interface as possible to the ability of certain databases to
* auto-generated numerical values for i.e. key columns; there is MySQL's AUTO_INCREMENT and