All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.onetwo.dbm.jdbc.AroundPreparedStatementExecute Maven / Gradle / Ivy

The newest version!
package org.onetwo.dbm.jdbc;

import java.sql.PreparedStatement;
import java.sql.SQLException;

import org.springframework.jdbc.core.PreparedStatementSetter;

abstract public class AroundPreparedStatementExecute {
	public void beforeExecute(PreparedStatementSetter pss, PreparedStatement ps) throws SQLException{
		if (pss != null) {
			pss.setValues(ps);
		}
	}
	abstract public void afterExecute(PreparedStatement ps, int rows) throws SQLException ;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy