[][src]Crate mysql_common

This crate is an implementation of basic MySql protocol primitives.

This crate:

  • defines basic MySql constants;
  • implements necessary functionality for MySql cached_sha2_password and mysql_native_password authentication plugins;
  • implements helper traits for MySql protocol IO;
  • implements support of named parameters for prepared statements;
  • implements parsers for a subset of MySql protocol packets;
  • defines rust representation of MySql protocol value and row;
  • implements conversion between MySql values and rust types, between MySql rows and tuples of rust types.

Supported rust types

Crate offers conversion from/to MySql values for following types (please see MySql documentation on supported ranges for numeric types). Following table refers to MySql protocol types (see Value struct) and not to MySql column types. Please see MySql documentation for column and protocol type correspondence:

TypeNotes
{i,u}8..{i,u}128, {i,u}sizeMySql int/uint will be converted, bytes will be parsed.
⚠️ Note that range of {i,u}128 is greater than supported by MySql integer types but it'll be serialized anyway (as decimal bytes string).
f32MySql float will be converted to f32, bytes will be parsed as f32.
⚠️ MySql double won't be converted to f32 to avoid precision loss (see #17)
f64MySql float and double will be converted to f64, bytes will be parsed as f64.
boolMySql int {0, 1} or bytes {"0x30", "0x31"}
Vec<u8>MySql bytes
StringMySql bytes parsed as utf8
Duration (std and time)MySql time or bytes parsed as MySql time string
time::PrimitiveDateTimeMySql date or bytes parsed as MySql date string
time::DateMySql date or bytes parsed as MySql date string
time::TimeMySql date or bytes parsed as MySql date string
chrono::NaiveTimeMySql date or bytes parsed as MySql date string
chrono::NaiveDateMySql date or bytes parsed as MySql date string
chrono::NaiveDateTimeMySql date or bytes parsed as MySql date string
uuid::UuidMySql bytes parsed using Uuid::from_slice
serde_json::ValueMySql bytes parsed using serde_json::from_str
mysql_common::Deserialized<T : DeserializeOwned>MySql bytes parsed using serde_json::from_str
Option<T: FromValue>Must be used for nullable columns to avoid errors
decimal::DecimalMySql int, uint or bytes parsed using Decimal::from_str.
⚠️ Note that this type doesn't support full range of MySql DECIMAL type.
bigdecimal::BigDecimalMySql int, uint, floats or bytes parsed using BigDecimal::parse_bytes.
⚠️ Note that range of this type is greater than supported by MySql DECIMAL type but it'll be serialized anyway.
num_bigint::{BigInt, BigUint}MySql int, uint or bytes parsed using _::parse_bytes.
⚠️ Note that range of this type is greater than supported by MySql integer types but it'll be serialized anyway (as decimal bytes string).

Re-exports

pub use bigdecimal;
pub use chrono;
pub use num_bigint;
pub use rust_decimal;
pub use serde;
pub use serde_json;
pub use time;
pub use uuid;

Modules

constants
crypto
io
misc
named_params
packets
params
proto
row
scramble
value

Macros

params

This macro is a convenient way to pass named parameters to a statement.

read_lenenc_str

Reads MySql's length-encoded string