reinhardt-db 0.1.2

Django-style database layer for Reinhardt framework
Documentation
1
2
3
4
5
6
7
8
9
10
//! MySQL backend module

pub mod schema;
pub mod two_phase;

pub use schema::MySQLSchemaEditor;
pub use two_phase::{
	MySqlTwoPhaseParticipant, XaSessionEnded, XaSessionPrepared, XaSessionStarted,
	XaTransactionInfo,
};