mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-12-30 05:11:13 +00:00
988 B
988 B
Contributing to SQLx
Thank you for your interest in contributing to SQLx! There are many ways to contribute and we appreciate all of them.
This page contains information about reporting issues as well as some tips and guidelines useful to experienced open source contributors.
Getting Started
todo: how to setup the project, run tests, etc.
Conventions
We aim to be consistent in our naming of both lifetimes and type parameters.
Lifetimes
| Lifetime | Description |
|---|---|
'x |
Single execution; lifetime ends after the fetch, execute, etc |
'v |
Argument value |
'q |
SQL query string |
'e |
Executor |
'c |
Connection |
'p |
Pool |
Type Parameters
| Type Parameter | Bound | Description |
|---|---|---|
Rt |
Runtime |
|
E |
Executor |
|
X |
Execute |
|
Db |
Database |
|
C |
Connection |
|
R |
Row |
|
O |
FromRow |
|
T |
Encode, Decode, and/or Type |