Files
wehub-resource-sync e04ed9c211
CF: Deploy Dev Docs / deploy (push) Has been cancelled
Sync Labels / build (push) Has been cancelled
tests / unit tests (macos-latest) (push) Has been cancelled
tests / unit tests (windows-latest) (push) Has been cancelled
tests / unit tests (ubuntu-latest) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:32:45 +08:00

2.1 KiB

title, linkTitle, type, weight, description, no_list
title linkTitle type weight description no_list
Firebird Source Source docs 1 Firebird is a powerful, cross-platform, and open-source relational database. true

About

Firebird is a relational database management system offering many ANSI SQL standard features that runs on Linux, Windows, and a variety of Unix platforms. It is known for its small footprint, powerful features, and easy maintenance.

Available Tools

{{< list-tools >}}

Requirements

Database User

This source uses standard authentication. You will need to create a Firebird user to login to the database with.

Example

kind: source
name: my_firebird_db
type: firebird
host: "localhost"
port: 3050
database: "/path/to/your/database.fdb"
user: ${FIREBIRD_USER}
password: ${FIREBIRD_PASS}

{{< notice tip >}} Use environment variable replacement with the format ${ENV_NAME} instead of hardcoding your secrets into the configuration file. {{< /notice >}}

Reference

field type required description
type string true Must be "firebird".
host string true IP address to connect to (e.g. "127.0.0.1")
port string true Port to connect to (e.g. "3050")
database string true Path to the Firebird database file (e.g. "/var/lib/firebird/data/test.fdb").
user string true Name of the Firebird user to connect as (e.g. "SYSDBA").
password string true Password of the Firebird user (e.g. "masterkey").