Functions and uses for databases

Learn about general functions and uses of the Digibee Integration Platform when creating integration pipelines.

Connection string with some databases

Mysql

jdbc:mysql://{host-ip}:{porta}/{nome-database}

Progress DB

jdbc:datadirect:openedge://{host-ip}:{porta};databaseName={nome-database};

MSsql - SQL Server

jdbc:sqlserver://{host-ip}:{porta};databaseName={nome-database}

Oracle

jdbc:oracle:thin:@(DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = {host-ip})(PORT = {porta})))(CONNECT_DATA =(SERVICE_NAME = {nome-database})))

PostGreSQL

jdbc:postgresql://{host-ip}:{porta}/{nome-database}

Sybase

This string is different from the others, because the connection properties go together with the string after the question mark:

jdbc:sybase:Tds:{host-ip}:{porta}/{nome-database}?DYNAMIC_PREPARE={dynamic-prepare}&APPLICATIONNAME={applcation-name}

SQL Server - Tables Description

This is an example of how to list the columns of the table in SQL Server by using select:

SQL Server - Function equivalent to IN

My SQL - Tables Description

Oracle - Function equivalent to IN

Oracle - Timestamp (number) to date convertion

Oracle - Select column names of a table

SQL Server - Tips to use pagination

Timeout Oracle Configuration

The following information must be entered in the Custom connection properties field in DB v2 component to have better control over the connection timeout with the database:

Postgres

SQLServer

Oracle

MySQL (via URL)

Last updated

Was this helpful?