Skip to content

Request: Support for FirebirdSQL #1243

Description

@mikependon

Describe the request

Extended support of RepoDB to Firebird for Enterprise enabled applications.

Describe your wish

Follow the convention and behaviors of other packs.

using FirebirdSql.Data.FirebirdClient;
using RepoDb;

var connectionString =
    "Database=/firebird/data/repodb.fdb;" +
    "DataSource=localhost;" +
    "Port=3050;" +
    "User=SYSDBA;" +
    "Password=masterkey;" +
    "Charset=UTF8;";

using var connection = new FbConnection(connectionString);

var customers = connection.Query<Customer>(
    new { IsActive = true });

foreach (var customer in customers)
{
    Console.WriteLine($"{customer.Id}: {customer.Name}");
}

Additional Context

The library should use the FirebirdSql.Data default ADO provider.

Metadata

Metadata

Assignees

Labels

featureDefined as a big development item (feature)priorityTop priority feature or things to dorequestA request from the community.todoThings to be done in the future

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions