* In this example we use the constructor where the url contains all the settings that are needed.
* You could also use the default constructor and deliver a Configuration with all the needed settings.
* You also could set the settings to the source-instance.
*/
GenericDataSource<JDBCInputFormat> source = new GenericDataSource<JDBCInputFormat>(
new JDBCInputFormat(
"org.apache.derby.jdbc.EmbeddedDriver",
"jdbc:derby:memory:ebookshop",
"select * from books"),
"Data Source");