liquibase.database.jvm.SybaseASAConnection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-core Show documentation
Show all versions of liquibase-core Show documentation
Liquibase is a tool for managing and executing database changes.
package liquibase.database.jvm;
import liquibase.exception.DatabaseException;
import liquibase.servicelocator.LiquibaseService;
import java.sql.Connection;
/**
* A SybaseASA specific Delegate that removes the calls
* to nativeSQL due to driver issues.
*
* @author Andreas Pohl
*
*/
@LiquibaseService(skip=true)
public class SybaseASAConnection extends JdbcConnection {
public SybaseASAConnection() {}
public SybaseASAConnection(Connection connection) {
super(connection);
}
@Override
public String nativeSQL(String sql) throws DatabaseException {
return sql;
}
}