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

de.sekmi.histream.etl.config.SQLSource Maven / Gradle / Ivy

There is a newer version: 0.7
Show newest version
package de.sekmi.histream.etl.config;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;

import de.sekmi.histream.etl.RowSupplier;

@XmlType(name="sql-query")
public class SQLSource extends TableSource {
	@XmlElement
	String jdbcDriver;
	@XmlElement
	String connectString;
	@XmlElement
	String sqlSelect;
	
	private SQLSource() {
	}
	public SQLSource(String driver, String connectString){
		this();
		this.jdbcDriver = driver;
		this.connectString = connectString;
	}
	@Override
	public RowSupplier rows(Meta meta) {
		throw new UnsupportedOperationException("Not implemented yet");
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy