dbexecutor.java
来自「羽量级数据持久层开发框架」· Java 代码 · 共 31 行
JAVA
31 行
package org.speedframework.db.executor;
import org.speedframework.exception.SpeedFrameworkException;
import java.sql.*;
public interface DBExecutor {
public void setCon(Connection con);
public abstract int execute(PreparedStatement ps, String SQL,
String[][] columnType, Object[] parmvalue, boolean isUpdate)
throws SQLException, SpeedFrameworkException;
public abstract ResultSet setExecuteQuery(PreparedStatement ps,
Object[] parmvalue) throws SQLException;
public abstract int[] executeBatch(String SQL, Object[][] params)
throws SpeedFrameworkException, SQLException;
public abstract boolean setExecuteCall(CallableStatement proc, String SQL,
Object[] parmvalue) throws SQLException, SpeedFrameworkException;
public Object setFunctionCall(CallableStatement proc, String SQL,
Object[] parmvalue, int returnType) throws SQLException,
SpeedFrameworkException;
public abstract int executeSpecial(String SQL,Object[] parmvalue) throws SQLException,
SpeedFrameworkException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?