Package eu.stratosphere.api.java.record.io.jdbc

Examples of eu.stratosphere.api.java.record.io.jdbc.JDBCInputFormat


     * 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");

View Full Code Here

TOP

Related Classes of eu.stratosphere.api.java.record.io.jdbc.JDBCInputFormat

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.