All Downloads are FREE. Search and download functionalities are using the official Maven repository.

liquibase.database.jvm.SybaseASAConnection Maven / Gradle / Ivy

There is a newer version: 4.29.2
Show newest version
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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy