Crate rsfbclient_diesel

Crate rsfbclient_diesel 

Source
Expand description

The Firebird Diesel

This crate only implements the firebird backend for Diesel. To use diesel features, you must import it.

By default the lib will use the native client. If you want use the pure rust client, enable the pure_rust feature.

§Establishing a connection

use diesel::prelude::*;
use rsfbclient_diesel::FbConnection;

let conn = FbConnection::establish("firebird://SYSDBA:masterkey@localhost/test.fdb");

Modules§

backend
The Firebird backend
connection
The Firebird connection
query_builder
The Firebird query builder
transaction
Firebird transaction
types
Types implementation of Firebird support
value
Firebird value representation

Structs§

FbConnection