Skip to main content

Database Store - Overview

Database Store is the central module of the platform responsible for managing all database connection definitions and configurations used across other system components.

It enables:

  • Registering and storing database connection definitions (BAS — Backend Adapter Systems).
  • Reusing saved connections without re-entering credentials.
  • Editing existing connections.
  • Integrating seamlessly with modules like Database Comparer, Database Wizard, and Connector Manager.

Supported Backend Adapter Systems

PostgreSQL logo

PostgreSQL

Oracle logo

Oracle

Informix logo

Informix

IBM Db2 logo

IBM DB2

AWS S3 logo

S3 Amazon

Cassandra logo

Cassandra

IBM Db2 logo

MS SQL Server

HDFS logo

HDFS

Snowflake logo

Snowflake

My SQL logo

MySQL

Core Functionalities

Connection Management

  • Create and configure database connections (URL, host, port, username, password, schema, etc.).
  • Save connections in a centralized repository.
  • Assign logical names (e.g., ORCL_PROD, PG_TEST) for clarity and reuse.

Configuration Reuse

  • Other modules can directly reference saved configurations.
  • Credentials are stored once and reused across processes.
  • Enables global updates — e.g., updating a password or host affects all linked connectors.

Creating and editing connections through the user interface

  • All stored connections can be created and modified through the graphical interface.
  • Built-in validation ensures correct URL formats, port numbers, and server availability.

Connection Parameters

ParameterDescriptionConnector Mapping
URLFull JDBC URL (e.g., jdbc:oracle:thin:@host:1521/ORCL)Maps to database.url.
HostDatabase server hostname or IPUsed in URL construction.
PortService port (e.g., 1521, 5432)Used in URL and connection checks.
Database / SID / Service NameDatabase or service identifierCompletes the JDBC endpoint.
Username / PasswordAuthentication credentialsMapped to database.user and database.password.

Values from Database Store are automatically mapped into connector configurations or comparison sessions, ensuring consistency and eliminating manual errors.