Documentation

Go .NET

Description

Firebird is a relational database offering many ANSI SQL standard features that runs on Linux, Windows, and a variety of Unix platforms. Firebird offers excellent concurrency, high performance, and powerful language support for stored procedures and triggers. It has been used in production systems, under a variety of names, since 1981.

Examples

Dependency:
go get github.com/testcontainers/testcontainers-go/modules/firebird
Usage:
firebirdContainer, err := firebird.Run(context.Background(), "jacobalberty/firebird:v3.0")
Dependency:
dotnet add package Testcontainers.FirebirdSql
Usage:
var firebirdContainer = new FirebirdSqlBuilder("jacobalberty/firebird:v4.0")
  .Build();
await firebirdContainer.StartAsync();