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

net.sf.aguacate.context.spi.sql.SentenceSql Maven / Gradle / Ivy

There is a newer version: 0.10.9
Show newest version
package net.sf.aguacate.context.spi.sql;

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

import net.sf.aguacate.util.config.database.DatabaseInterface;

public interface SentenceSql {

	String getName();
	
	SentenceSqlType getType();

	SentenceExecutionResult execute(DatabaseInterface databaseInterface, Connection connection, Map context) throws SQLException;

	boolean validFor(String method);

	String outputName();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy