📄 dbexecutor.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -