mirror of
https://github.com/moparisthebest/JdbcMapper
synced 2024-12-21 23:08:52 -05:00
Update snapshots for @RunInTransaction void support
This commit is contained in:
parent
9e89131a5b
commit
d6d77c9528
@ -1910,6 +1910,11 @@ final java.time.ZoneOffset ret = com.moparisthebest.jdbc.util.ResultSetUtil.getZ
|
||||
return com.moparisthebest.jdbc.QueryRunner.runInTransaction(this, dao -> PersonDAO.super.getPersonInTransaction(lastName));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void update(final java.lang.String lastName) throws java.sql.SQLException {
|
||||
com.moparisthebest.jdbc.QueryRunner.runInTransaction(this, com.moparisthebest.jdbc.QueryRunner.voidToRunner(dao -> PersonDAO.super.update(lastName)));
|
||||
}
|
||||
|
||||
@Override
|
||||
public byte[] getBlob(final long valNo) {
|
||||
PreparedStatement ps = null;
|
||||
|
@ -1910,6 +1910,11 @@ final java.time.ZoneOffset ret = com.moparisthebest.jdbc.util.ResultSetUtil.getZ
|
||||
return com.moparisthebest.jdbc.QueryRunner.runInTransaction(this, dao -> PersonDAO.super.getPersonInTransaction(lastName));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void update(final java.lang.String lastName) throws java.sql.SQLException {
|
||||
com.moparisthebest.jdbc.QueryRunner.runInTransaction(this, com.moparisthebest.jdbc.QueryRunner.voidToRunner(dao -> PersonDAO.super.update(lastName)));
|
||||
}
|
||||
|
||||
@Override
|
||||
public byte[] getBlob(final long valNo) {
|
||||
PreparedStatement ps = null;
|
||||
|
@ -1910,6 +1910,11 @@ final java.time.ZoneOffset ret = com.moparisthebest.jdbc.util.ResultSetUtil.getZ
|
||||
return com.moparisthebest.jdbc.QueryRunner.runInTransaction(this, dao -> PersonDAO.super.getPersonInTransaction(lastName));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void update(final java.lang.String lastName) throws java.sql.SQLException {
|
||||
com.moparisthebest.jdbc.QueryRunner.runInTransaction(this, com.moparisthebest.jdbc.QueryRunner.voidToRunner(dao -> PersonDAO.super.update(lastName)));
|
||||
}
|
||||
|
||||
@Override
|
||||
public byte[] getBlob(final long valNo) {
|
||||
PreparedStatement ps = null;
|
||||
|
@ -1910,6 +1910,11 @@ final java.time.ZoneOffset ret = com.moparisthebest.jdbc.util.ResultSetUtil.getZ
|
||||
return com.moparisthebest.jdbc.QueryRunner.runInTransaction(this, dao -> PersonDAO.super.getPersonInTransaction(lastName));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void update(final java.lang.String lastName) throws java.sql.SQLException {
|
||||
com.moparisthebest.jdbc.QueryRunner.runInTransaction(this, com.moparisthebest.jdbc.QueryRunner.voidToRunner(dao -> PersonDAO.super.update(lastName)));
|
||||
}
|
||||
|
||||
@Override
|
||||
public byte[] getBlob(final long valNo) {
|
||||
PreparedStatement ps = null;
|
||||
|
@ -1910,6 +1910,11 @@ final java.time.ZoneOffset ret = com.moparisthebest.jdbc.util.ResultSetUtil.getZ
|
||||
return com.moparisthebest.jdbc.QueryRunner.runInTransaction(this, dao -> PersonDAO.super.getPersonInTransaction(lastName));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void update(final java.lang.String lastName) throws java.sql.SQLException {
|
||||
com.moparisthebest.jdbc.QueryRunner.runInTransaction(this, com.moparisthebest.jdbc.QueryRunner.voidToRunner(dao -> PersonDAO.super.update(lastName)));
|
||||
}
|
||||
|
||||
@Override
|
||||
public byte[] getBlob(final long valNo) {
|
||||
PreparedStatement ps = null;
|
||||
|
Loading…
Reference in New Issue
Block a user