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

com.eshore.jdbc.api.ISQLExecuter Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package com.eshore.jdbc.api;

import java.sql.SQLException;
import java.util.Map;

import javax.sql.DataSource;

public interface ISQLExecuter {
	void setDataSource(DataSource ds);
	ITransaction begingTransaction()throws SQLException;
	int execute(String sql,Object... param)throws SQLException;
	int execute(String sql)throws SQLException;
	long insertReturnKey(String sql,Object... param)throws SQLException;
	
	
	int tryExecute(String sql,Object... param);
	int tryExecute(String sql);
	IPojoExeuter pojo(Object o);
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy