Austin Bonander b5312c3b6f Break drivers out into separate crates, clean up some technical debt (#2039)
* WIP rt refactors

* refactor: break drivers out into separate crates

also cleans up significant technical debt
2023-02-21 13:25:25 -08:00
..

Postgres Transaction Example

A simple example demonstrating how to obtain and roll back a transaction with postgres.

Usage

Declare the database URL. This example does not include any reading or writing of data.

export DATABASE_URL="postgres://postgres@localhost/postgres"

Run.

cargo run