Project

General

Profile

1
/**
2
 * 
3
 */
4
package eu.dnetlib.data.collective.transformation;
5

    
6
import java.util.List;
7

    
8
/**
9
 * @author jochen
10
 *
11
 */
12
public interface IDatabaseConnector {
13

    
14
	/**
15
	 * executes a SQL query 
16
	 * @param aSQLquery
17
	 * @return List containing the results of this query execution
18
	 */
19
	List<String> getResult(String aSQLquery) throws TransformationException;
20
}
(1-1/5)