oracle database source Oracle Database Source

Provided by: "Apache Software Foundation"

Support Level for this Kamelet is: "Stable"

Query data from an Oracle Database.

In your Pipe file, you must explicitly declare the Oracle Database driver dependency in spec→integration→dependencies.

  • "mvn:com.oracle.database.jdbc:ojdbc11:<version>"

Configuration Options

The following table summarizes the configuration options available for the oracle-database-source Kamelet:

Property Name Description Type Default Example

databaseName

Database Name

Required The name of the Oracle Database.

string

password

Password

Required The password to access a secured Oracle Database.

string

query

Query

Required The query to execute against the Oracle Database.

string

INSERT INTO accounts (username,city) VALUES (:#username,:#city)

serverName

Server Name

Required The server name for the data source.

string

localhost

username

Username

Required The username to access a secured Oracle Database.

string

consumedQuery

Consumed Query

A query to run on a tuple consumed.

string

DELETE FROM accounts where user_id = :#user_id

serverPort

Server Port

The server port for the data source.

string

1521

Dependencies

At runtime, the oracle-database-source Kamelet relies upon the presence of the following dependencies:

  • camel:jackson

  • camel:kamelet

  • camel:sql

  • mvn:org.apache.commons:commons-dbcp2:2.12.0

Camel JBang usage

Prerequisites

  • You’ve installed JBang.

  • You have executed the following command:

jbang app install camel@apache/camel

Supposing you have a file named route.yaml with this content:

- route:
    from:
      uri: "kamelet:oracle-database-source"
      parameters:
        .
        .
        .
      steps:
        - to:
            uri: "kamelet:log-sink"

You can now run it directly through the following command

camel run route.yaml