Struct mysql_macro::Conn

source ·
pub struct Conn { /* private fields */ }
Expand description

MySql server connection.

Implementations§

source§

impl Conn

source

pub fn id(&self) -> u32

Returns connection identifier.

source

pub fn last_insert_id(&self) -> Option<u64>

Returns the ID generated by a query (usually INSERT) on a table with a column having the AUTO_INCREMENT attribute. Returns None if there was no previous query on the connection or if the query did not update an AUTO_INCREMENT value.

source

pub fn affected_rows(&self) -> u64

Returns the number of rows affected by the last INSERT, UPDATE, REPLACE or DELETE query.

source

pub fn info(&self) -> Cow<'_, str>

Text information, as reported by the server in the last OK packet, or an empty string.

source

pub fn get_warnings(&self) -> u16

Number of warnings, as reported by the server in the last OK packet, or 0.

source

pub fn last_ok_packet(&self) -> Option<&OkPacket<'static>>

Returns a reference to the last OK packet.

source

pub fn reset_connection(&mut self, reset_connection: bool)

Turns on/off automatic connection reset (see crate::PoolOpts::with_reset_connection).

Only makes sense for pooled connections.

source

pub fn server_version(&self) -> (u16, u16, u16)

Returns server version.

source

pub fn opts(&self) -> &Opts

Returns connection options.

source

pub fn set_infile_handler<T>(&mut self, handler: T)
where T: Future<Output = Result<Pin<Box<dyn Stream<Item = Result<Bytes, Error>> + Send>>, Error>> + Send + Sync + 'static,

Setup local LOCAL INFILE handler (see “LOCAL INFILE Handlers” section of the crate-level docs).

It’ll overwrite existing local handler, if any.

source

pub async fn disconnect(self) -> Result<(), Error>

Disconnects this connection from server.

source

pub fn new<T>( opts: T ) -> Pin<Box<dyn Future<Output = Result<Conn, Error>> + Send>>
where T: Into<Opts>,

Returns a future that resolves to Conn.

source

pub async fn from_url<T>(url: T) -> Result<Conn, Error>
where T: AsRef<str>,

Returns a future that resolves to Conn.

source

pub async fn reset(&mut self) -> Result<bool, Error>

Executes COM_RESET_CONNECTION.

Returns false if command is not supported (requires MySql >5.7.2, MariaDb >10.2.3). For older versions consider using Conn::change_user.

source

pub async fn change_user(&mut self, opts: ChangeUserOpts) -> Result<(), Error>

Executes COM_CHANGE_USER.

This might be used as an older and slower alternative to COM_RESET_CONNECTION that works on MySql prior to 5.7.3 (MariaDb prior ot 10.2.4).

Note
  • Using non-default opts for a pooled connection is discouraging.
  • Connection options will be permanently updated.
source§

impl Conn

source

pub async fn start_transaction( &mut self, options: TxOpts ) -> Result<Transaction<'_>, Error>

Starts a transaction.

Trait Implementations§

source§

impl Debug for Conn

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Drop for Conn

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl Queryable for Conn

source§

fn ping( &mut self ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + '_>>

Executes COM_PING.
source§

fn query_iter<'a, Q>( &'a mut self, query: Q ) -> Pin<Box<dyn Future<Output = Result<QueryResult<'a, 'static, TextProtocol>, Error>> + Send + 'a>>
where Q: AsQuery + 'a,

Performs the given query and returns the result.
source§

fn prep<'a, Q>( &'a mut self, query: Q ) -> Pin<Box<dyn Future<Output = Result<Statement, Error>> + Send + 'a>>
where Q: AsQuery + 'a,

Prepares the given statement. Read more
source§

fn close( &mut self, stmt: Statement ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + '_>>

Closes the given statement. Read more
source§

fn exec_iter<'a, 's, Q, P>( &'a mut self, stmt: Q, params: P ) -> Pin<Box<dyn Future<Output = Result<QueryResult<'a, 'static, BinaryProtocol>, Error>> + Send + 's>>
where 'a: 's, Q: StatementLike + 'a, P: Into<Params>,

Executes the given statement with given params. Read more
source§

fn exec_batch<'a, 'b, S, P, I>( &'a mut self, stmt: S, params_iter: I ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'b>>
where 'a: 'b, S: StatementLike + 'b, I: IntoIterator<Item = P> + Send + 'b, <I as IntoIterator>::IntoIter: Send, P: Into<Params> + Send,

Executes the given statement for each item in the given params iterator. Read more
source§

fn query<'a, T, Q>( &'a mut self, query: Q ) -> Pin<Box<dyn Future<Output = Result<Vec<T>, Error>> + Send + 'a>>
where Q: AsQuery + 'a, T: FromRow + Send + 'static,

Performs the given query and collects the first result set. Read more
source§

fn query_first<'a, T, Q>( &'a mut self, query: Q ) -> Pin<Box<dyn Future<Output = Result<Option<T>, Error>> + Send + 'a>>
where Q: AsQuery + 'a, T: FromRow + Send + 'static,

Performs the given query and returns the first row of the first result set. Read more
source§

fn query_map<'a, T, F, Q, U>( &'a mut self, query: Q, f: F ) -> Pin<Box<dyn Future<Output = Result<Vec<U>, Error>> + Send + 'a>>
where Q: AsQuery + 'a, T: FromRow + Send + 'static, F: FnMut(T) -> U + Send + 'a, U: Send,

Performs the given query and maps each row of the first result set. Read more
source§

fn query_fold<'a, T, F, Q, U>( &'a mut self, query: Q, init: U, f: F ) -> Pin<Box<dyn Future<Output = Result<U, Error>> + Send + 'a>>
where Q: AsQuery + 'a, T: FromRow + Send + 'static, F: FnMut(U, T) -> U + Send + 'a, U: Send + 'a,

Performs the given query and folds the first result set to a single value. Read more
source§

fn query_drop<'a, Q>( &'a mut self, query: Q ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'a>>
where Q: AsQuery + 'a,

Performs the given query and drops the query result.
source§

fn exec<'a, 'b, T, S, P>( &'a mut self, stmt: S, params: P ) -> Pin<Box<dyn Future<Output = Result<Vec<T>, Error>> + Send + 'b>>
where 'a: 'b, S: StatementLike + 'b, P: Into<Params> + Send + 'b, T: FromRow + Send + 'static,

Executes the given statement and collects the first result set. Read more
source§

fn exec_first<'a, 'b, T, S, P>( &'a mut self, stmt: S, params: P ) -> Pin<Box<dyn Future<Output = Result<Option<T>, Error>> + Send + 'b>>
where 'a: 'b, S: StatementLike + 'b, P: Into<Params> + Send + 'b, T: FromRow + Send + 'static,

Executes the given statement and returns the first row of the first result set. Read more
source§

fn exec_map<'a, 'b, T, S, P, U, F>( &'a mut self, stmt: S, params: P, f: F ) -> Pin<Box<dyn Future<Output = Result<Vec<U>, Error>> + Send + 'b>>
where 'a: 'b, S: StatementLike + 'b, P: Into<Params> + Send + 'b, T: FromRow + Send + 'static, F: FnMut(T) -> U + Send + 'a, U: Send + 'a,

Executes the given stmt and maps each row of the first result set. Read more
source§

fn exec_fold<'a, 'b, T, S, P, U, F>( &'a mut self, stmt: S, params: P, init: U, f: F ) -> Pin<Box<dyn Future<Output = Result<U, Error>> + Send + 'b>>
where 'a: 'b, S: StatementLike + 'b, P: Into<Params> + Send + 'b, T: FromRow + Send + 'static, F: FnMut(U, T) -> U + Send + 'a, U: Send + 'a,

Executes the given stmt and folds the first result set to a signel value. Read more
source§

fn exec_drop<'a, 'b, S, P>( &'a mut self, stmt: S, params: P ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'b>>
where 'a: 'b, S: StatementLike + 'b, P: Into<Params> + Send + 'b,

Executes the given statement and drops the result.
source§

fn query_stream<'a, T, Q>( &'a mut self, query: Q ) -> Pin<Box<dyn Future<Output = Result<ResultSetStream<'a, 'a, 'static, T, TextProtocol>, Error>> + Send + 'a>>
where T: Unpin + FromRow + Send + 'static, Q: AsQuery + 'a,

Returns a stream over the first result set. Read more
source§

fn exec_stream<'a, 's, T, Q, P>( &'a mut self, stmt: Q, params: P ) -> Pin<Box<dyn Future<Output = Result<ResultSetStream<'a, 'a, 'static, T, BinaryProtocol>, Error>> + Send + 's>>
where 'a: 's, T: Unpin + FromRow + Send + 'static, Q: StatementLike + 'a, P: Into<Params> + Send + 's,

Returns a stream over the first result set. Read more
source§

impl<'a> ToConnection<'a, 'static> for &'a mut Conn

source§

impl ToConnection<'static, 'static> for Conn

Auto Trait Implementations§

§

impl !RefUnwindSafe for Conn

§

impl Send for Conn

§

impl Sync for Conn

§

impl Unpin for Conn

§

impl !UnwindSafe for Conn

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more