Sha256: e31535e5655d673f07adb51d3807a8101c6b754405dce5bf817d71e6501df235
Contents?: true
Size: 492 Bytes
Versions: 14
Compression:
Stored size: 492 Bytes
Contents
package org.embulk.input.oracle; import java.sql.Connection; import java.sql.SQLException; import org.embulk.input.jdbc.JdbcInputConnection; public class OracleInputConnection extends JdbcInputConnection { public OracleInputConnection(Connection connection, String schemaName) throws SQLException { super(connection, schemaName); } @Override protected void setSearchPath(String schema) throws SQLException { connection.setSchema(schema); } }
Version data entries
14 entries across 14 versions & 1 rubygems