Type Alias MySqlPool

Source
pub type MySqlPool = Pool<MySql>;
Expand description

An alias for Pool, specialized for MySQL.

Aliased Type§

struct MySqlPool(/* private fields */);

Implementations

Source§

impl<DB> Pool<DB>
where DB: Database,

Source

pub async fn connect(url: &str) -> Result<Pool<DB>, Error>

Create a new connection pool with a default pool configuration and the given connection URL, and immediately establish one connection.

Refer to the relevant ConnectOptions impl for your database for the expected URL format:

  • Postgres: [PgConnectOptions][crate::postgres::PgConnectOptions]
  • MySQL: [MySqlConnectOptions][crate::mysql::MySqlConnectOptions]
  • SQLite: [SqliteConnectOptions][crate::sqlite::SqliteConnectOptions]
  • MSSQL: [MssqlConnectOptions][crate::mssql::MssqlConnectOptions]

The default configuration is mainly suited for testing and light-duty applications. For production applications, you’ll likely want to make at least few tweaks.

See PoolOptions::new() for details.

Source

pub async fn connect_with( options: <<DB as Database>::Connection as Connection>::Options, ) -> Result<Pool<DB>, Error>

Create a new connection pool with a default pool configuration and the given ConnectOptions, and immediately establish one connection.

The default configuration is mainly suited for testing and light-duty applications. For production applications, you’ll likely want to make at least few tweaks.

See PoolOptions::new() for details.

Source

pub fn connect_lazy(url: &str) -> Result<Pool<DB>, Error>

Create a new connection pool with a default pool configuration and the given connection URL.

The pool will establish connections only as needed.

Refer to the relevant ConnectOptions impl for your database for the expected URL format:

  • Postgres: [PgConnectOptions][crate::postgres::PgConnectOptions]
  • MySQL: [MySqlConnectOptions][crate::mysql::MySqlConnectOptions]
  • SQLite: [SqliteConnectOptions][crate::sqlite::SqliteConnectOptions]
  • MSSQL: [MssqlConnectOptions][crate::mssql::MssqlConnectOptions]

The default configuration is mainly suited for testing and light-duty applications. For production applications, you’ll likely want to make at least few tweaks.

See PoolOptions::new() for details.

Source

pub fn connect_lazy_with( options: <<DB as Database>::Connection as Connection>::Options, ) -> Pool<DB>

Create a new connection pool with a default pool configuration and the given ConnectOptions.

The pool will establish connections only as needed.

The default configuration is mainly suited for testing and light-duty applications. For production applications, you’ll likely want to make at least few tweaks.

See PoolOptions::new() for details.

Source

pub fn acquire( &self, ) -> impl Future<Output = Result<PoolConnection<DB>, Error>> + 'static

Retrieves a connection from the pool.

The total time this method is allowed to execute is capped by PoolOptions::acquire_timeout. If that timeout elapses, this will return Error::PoolClosed.

§Note: Cancellation/Timeout May Drop Connections

If acquire is cancelled or times out after it acquires a connection from the idle queue or opens a new one, it will drop that connection because we don’t want to assume it is safe to return to the pool, and testing it to see if it’s safe to release could introduce subtle bugs if not implemented correctly. To avoid that entirely, we’ve decided to not gracefully handle cancellation here.

However, if your workload is sensitive to dropped connections such as using an in-memory SQLite database with a pool size of 1, you can pretty easily ensure that a cancelled acquire() call will never drop connections by tweaking your PoolOptions:

This should eliminate any potential .await points between acquiring a connection and returning it.

Source

pub fn try_acquire(&self) -> Option<PoolConnection<DB>>

Attempts to retrieve a connection from the pool if there is one available.

Returns None immediately if there are no idle connections available in the pool or there are tasks waiting for a connection which have yet to wake.

Source

pub async fn begin(&self) -> Result<Transaction<'static, DB>, Error>

Retrieves a connection and immediately begins a new transaction.

Source

pub async fn try_begin(&self) -> Result<Option<Transaction<'static, DB>>, Error>

Attempts to retrieve a connection and immediately begins a new transaction if successful.

Source

pub async fn begin_with( &self, statement: impl Into<Cow<'static, str>>, ) -> Result<Transaction<'static, DB>, Error>

Retrieves a connection and immediately begins a new transaction using statement.

Source

pub async fn try_begin_with( &self, statement: impl Into<Cow<'static, str>>, ) -> Result<Option<Transaction<'static, DB>>, Error>

Attempts to retrieve a connection and, if successful, immediately begins a new transaction using statement.

Source

pub fn close(&self) -> impl Future<Output = ()>

Shut down the connection pool, immediately waking all tasks waiting for a connection.

Upon calling this method, any currently waiting or subsequent calls to Pool::acquire and the like will immediately return Error::PoolClosed and no new connections will be opened. Checked-out connections are unaffected, but will be gracefully closed on-drop rather than being returned to the pool.

Returns a Future which can be .awaited to ensure all connections are gracefully closed. It will first close any idle connections currently waiting in the pool, then wait for all checked-out connections to be returned or closed.

Waiting for connections to be gracefully closed is optional, but will allow the database server to clean up the resources sooner rather than later. This is especially important for tests that create a new pool every time, otherwise you may see errors about connection limits being exhausted even when running tests in a single thread.

If the returned Future is not run to completion, any remaining connections will be dropped when the last handle for the given pool instance is dropped, which could happen in a task spawned by Pool internally and so may be unpredictable otherwise.

.close() may be safely called and .awaited on multiple handles concurrently.

Source

pub fn is_closed(&self) -> bool

Returns true if .close() has been called on the pool, false otherwise.

Source

pub fn close_event(&self) -> CloseEvent

Get a future that resolves when Pool::close() is called.

If the pool is already closed, the future resolves immediately.

This can be used to cancel long-running operations that hold onto a PoolConnection so they don’t prevent the pool from closing (which would otherwise wait until all connections are returned).

§Examples

These examples use Postgres and Tokio, but should suffice to demonstrate the concept.

Do something when the pool is closed:

use sqlx::PgPool;

let pool = PgPool::connect("postgresql://...").await?;

let pool2 = pool.clone();

tokio::spawn(async move {
    // Demonstrates that `CloseEvent` is itself a `Future` you can wait on.
    // This lets you implement any kind of on-close event that you like.
    pool2.close_event().await;

    println!("Pool is closing!");

    // Imagine maybe recording application statistics or logging a report, etc.
});

// The rest of the application executes normally...

// Close the pool before the application exits...
pool.close().await;

Cancel a long-running operation:

use sqlx::{Executor, PgPool};

let pool = PgPool::connect("postgresql://...").await?;

let pool2 = pool.clone();

tokio::spawn(async move {
    // `do_until` yields the inner future's output wrapped in `sqlx::Result`,
    // in this case giving a double-wrapped result.
    let res: sqlx::Result<sqlx::Result<()>> = pool2.close_event().do_until(async {
        // This statement normally won't return for 30 days!
        // (Assuming the connection doesn't time out first, of course.)
        pool2.execute("SELECT pg_sleep('30 days')").await?;

        // If the pool is closed before the statement completes, this won't be printed.
        // This is because `.do_until()` cancels the future it's given if the
        // pool is closed first.
        println!("Waited!");

        Ok(())
    }).await;

    match res {
        Ok(Ok(())) => println!("Wait succeeded"),
        Ok(Err(e)) => println!("Error from inside do_until: {e:?}"),
        Err(e) => println!("Error from do_until: {e:?}"),
    }
});

// This normally wouldn't return until the above statement completed and the connection
// was returned to the pool. However, thanks to `.do_until()`, the operation was
// cancelled as soon as we called `.close().await`.
pool.close().await;
Source

pub fn size(&self) -> u32

Returns the number of connections currently active. This includes idle connections.

Source

pub fn num_idle(&self) -> usize

Returns the number of connections active and idle (not in use).

Source

pub fn connect_options( &self, ) -> Arc<<<DB as Database>::Connection as Connection>::Options>

Gets a clone of the connection options for this pool

Source

pub fn set_connect_options( &self, connect_options: <<DB as Database>::Connection as Connection>::Options, )

Updates the connection options this pool will use when opening any future connections. Any existing open connection in the pool will be left as-is.

Source

pub fn options(&self) -> &PoolOptions<DB>

Get the options for this pool

Trait Implementations

Source§

impl<DB> Clone for Pool<DB>
where DB: Database,

Returns a new Pool tied to the same shared connection pool.

Source§

fn clone(&self) -> Pool<DB>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<DB> Debug for Pool<DB>
where DB: Database,

Source§

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

Formats the value using the given formatter. Read more