Sha256: d716dd5f1a1591d74a843c899c86c5ecc7056ffd248554e26ab8c50571c9ff5a
Contents?: true
Size: 478 Bytes
Versions: 4
Compression:
Stored size: 478 Bytes
Contents
package org.embulk.input.sqlserver; import java.sql.Connection; import java.sql.SQLException; import org.embulk.input.jdbc.JdbcInputConnection; public class SQLServerInputConnection extends JdbcInputConnection { public SQLServerInputConnection(Connection connection, String schemaName) throws SQLException { super(connection, schemaName); } @Override protected void setSearchPath(String schema) throws SQLException { // NOP } }
Version data entries
4 entries across 4 versions & 1 rubygems