io.kestra.plugin.jdbc.sybase.Query Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin-jdbc-sybase Show documentation
Show all versions of plugin-jdbc-sybase Show documentation
Query Sybase databases using the Kestra JDBC plugin.
The newest version!
package io.kestra.plugin.jdbc.sybase;
import io.kestra.core.models.annotations.Example;
import io.kestra.core.models.annotations.Plugin;
import io.kestra.core.models.tasks.RunnableTask;
import io.kestra.core.runners.RunContext;
import io.kestra.plugin.jdbc.AbstractCellConverter;
import io.kestra.plugin.jdbc.AbstractJdbcQuery;
import io.kestra.plugin.jdbc.AutoCommitInterface;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.*;
import lombok.experimental.SuperBuilder;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.time.ZoneId;
import java.util.Properties;
@SuperBuilder
@ToString
@EqualsAndHashCode
@Getter
@NoArgsConstructor
@Schema(
title = "Query a Sybase database."
)
@Plugin(
examples = {
@Example(
title = "Send a SQL query to a Sybase Database and fetch a row as output.",
full = true,
code = """
id: sybase_query
namespace: company.team
tasks:
- id: query
type: io.kestra.plugin.jdbc.sybase.Query
url: jdbc:sybase:Tds:127.0.0.1:5000/
username: syb_user
password: syb_password
sql: select * from syb_types
fetchType: FETCH_ONE
"""
)
}
)
public class Query extends AbstractJdbcQuery implements RunnableTask, AutoCommitInterface {
protected final Boolean autoCommit = true;
@Override
protected AbstractCellConverter getCellConverter(ZoneId zoneId) {
return new SybaseCellConverter(zoneId);
}
@Override
public void registerDriver() throws SQLException {
DriverManager.registerDriver(new com.sybase.jdbc4.jdbc.SybDriver());
}
@Override
public Properties connectionProperties(RunContext runContext) throws Exception {
return super.connectionProperties(runContext);
}
}