Docs.rs
  • sqlx-core-0.5.13
    • sqlx-core 0.5.13
    • Docs.rs crate page
    • MIT OR Apache-2.0
    • Links
    • Repository
    • crates.io
    • Source
    • Owners
    • mehcode
    • abonander
    • Dependencies
      • ahash ^0.7.6 normal
      • atoi ^0.4.0 normal
      • base64 ^0.13.0 normal
      • bigdecimal ^0.2.2 normal
      • bit-vec ^0.6.3 normal
      • bitflags ^1.3.2 normal
      • bstr ^0.2.17 normal
      • byteorder ^1.4.3 normal
      • bytes ^1.1.0 normal
      • chrono ^0.4.19 normal
      • crc ^2.1.0 normal
      • crossbeam-queue ^0.3.2 normal
      • digest ^0.10.0 normal
      • dirs ^4.0.0 normal
      • either ^1.6.1 normal
      • encoding_rs ^0.8.30 normal
      • event-listener ^2.5.2 normal
      • flume ^0.10.9 normal
      • futures-channel ^0.3.19 normal
      • futures-core ^0.3.19 normal
      • futures-executor ^0.3.19 normal
      • futures-intrusive ^0.4.0 normal
      • futures-util ^0.3.19 normal
      • generic-array ^0.14.4 normal
      • git2 ^0.13.25 normal
      • hashlink ^0.7.0 normal
      • hex ^0.4.3 normal
      • hkdf ^0.12.0 normal
      • hmac ^0.12.0 normal
      • indexmap ^1.6.0 normal
      • ipnetwork ^0.17.0 normal
      • itoa ^1.0.1 normal
      • libc ^0.2.112 normal
      • libsqlite3-sys ^0.24.1 normal
      • log ^0.4.14 normal
      • mac_address ^1.1.2 normal
      • md-5 ^0.10.0 normal
      • memchr ^2.4.1 normal
      • num-bigint ^0.3.3 normal
      • once_cell ^1.9.0 normal
      • paste ^1.0.6 normal
      • percent-encoding ^2.1.0 normal
      • rand ^0.8.4 normal
      • regex ^1.5.5 normal
      • rsa ^0.6.0 normal
      • rust_decimal ^1.19.0 normal
      • rustls ^0.19.1 normal
      • serde ^1.0.132 normal
      • serde_json ^1.0.73 normal
      • sha-1 ^0.10.0 normal
      • sha2 ^0.10.0 normal
      • smallvec ^1.7.0 normal
      • sqlformat ^0.1.8 normal
      • sqlx-rt ^0.5.13 normal
      • stringprep ^0.1.2 normal
      • thiserror ^1.0.30 normal
      • time ^0.2.27 normal
      • tokio-stream ^0.1.8 normal
      • url ^2.2.2 normal
      • uuid ^0.8.2 normal
      • webpki ^0.21.4 normal
      • webpki-roots ^0.21.1 normal
      • whoami ^1.2.1 normal
      • sqlx ^0.5.13 dev
      • tokio ^1 dev
    • Versions
    • 59.73% of the crate is documented
  • Go to latest version
  • Platform
    • x86_64-unknown-linux-gnu
  • Feature flags
  • docs.rs
    • About docs.rs
    • Privacy policy
  • Rust
    • Rust website
    • The Book
    • Standard Library API Reference
    • Rust by Example
    • The Cargo Guide
    • Clippy Documentation
logo

Crate sqlx_core

logo

Crate sqlx_core

  • Version 0.5.13
  • All Items
  • Modules
  • Enums

Modules

  • acquire
  • any
  • arguments
  • column
  • connection
  • database
  • decode
  • describe
  • encode
  • error
  • executor
  • from_row
  • migrate
  • mssql
  • mysql
  • pool
  • postgres
  • query
  • query_as
  • query_builder
  • query_scalar
  • row
  • sqlite
  • statement
  • transaction
  • type_info
  • types
  • value

Enums

  • Either
logo
Change settings

Crate sqlx_core

source · [−]
Expand description

Core of SQLx, the rust SQL toolkit. Not intended to be used directly.

Modules

acquire
any

Generic database driver with the specific driver selected at runtime.

arguments

Types and traits for passing arguments to SQL queries.

column
connection
database

Traits to represent a database driver.

decode

Provides Decode for decoding values from the database.

describe
encode

Provides Encode for encoding values for the database.

error

Types for working with errors produced by SQLx.

executor
from_row
migrate
mssql

Microsoft SQL (MSSQL) database driver.

mysql

MySQL database driver.

pool

Provides the connection pool for asynchronous SQLx connections.

postgres

PostgreSQL database driver.

query
query_as
query_builder

Runtime query-builder API.

query_scalar
row
sqlite

SQLite database driver.

statement
transaction
type_info
types

Conversions between Rust and SQL types.

value

Enums

Either

The enum Either with variants Left and Right is a general purpose sum type with two cases.

Results for Query

sqlx_core::query::Query
Raw SQL query with bind parameters. Returned by query.
sqlx_core::query::query
Make a SQL query.
sqlx_core::postgres::PgErrorPosition::Internal::query
The text of a failed internally-generated command. This …
sqlx_core::query
sqlx_core::statement::Statement::query
sqlx_core::any::AnyStatement::query
sqlx_core::mssql::MssqlStatement::query
sqlx_core::mysql::MySqlStatement::query
sqlx_core::postgres::PgStatement::query
sqlx_core::sqlite::SqliteStatement::query
sqlx_core::query_as::QueryAs
Raw SQL query with bind parameters, mapped to a concrete …
sqlx_core::postgres::types::PgLQuery
Container for a Label Tree Query (lquery) in Postgres.
sqlx_core::query_as::query_as
Make a SQL query that is mapped to a concrete type using …
sqlx_core::query_as
sqlx_core::statement::Statement::query_as
sqlx_core::any::AnyStatement::query_as
sqlx_core::mssql::MssqlStatement::query_as
sqlx_core::mysql::MySqlStatement::query_as
sqlx_core::postgres::PgStatement::query_as
sqlx_core::sqlite::SqliteStatement::query_as
sqlx_core::query::query_with
Make a SQL query, with the given arguments.
sqlx_core::statement::Statement::query_with
sqlx_core::any::AnyStatement::query_with
sqlx_core::mssql::MssqlStatement::query_with
sqlx_core::mysql::MySqlStatement::query_with
sqlx_core::postgres::PgStatement::query_with
sqlx_core::sqlite::SqliteStatement::query_with
sqlx_core::database::Database::QueryResult
The concrete QueryResult implementation for this database.
sqlx_core::query_scalar::QueryScalar
Raw SQL query with bind parameters, mapped to a concrete …
sqlx_core::query_scalar::query_scalar
Make a SQL query that is mapped to a single concrete type …
sqlx_core::query_scalar
sqlx_core::statement::Statement::query_scalar
sqlx_core::any::AnyStatement::query_scalar
sqlx_core::mssql::MssqlStatement::query_scalar
sqlx_core::mysql::MySqlStatement::query_scalar
sqlx_core::postgres::PgStatement::query_scalar
sqlx_core::sqlite::SqliteStatement::query_scalar
sqlx_core::query_builder::QueryBuilder
A builder type for constructing queries at runtime.
sqlx_core::postgres::types::PgLQueryLevel
sqlx_core::postgres::PgQueryResult
sqlx_core::query_as::query_as_with
Make a SQL query, with the given arguments, that is mapped …
sqlx_core::statement::Statement::query_as_with
sqlx_core::any::AnyStatement::query_as_with
sqlx_core::mssql::MssqlStatement::query_as_with
sqlx_core::mysql::MySqlStatement::query_as_with
sqlx_core::postgres::PgStatement::query_as_with
sqlx_core::sqlite::SqliteStatement::query_as_with
sqlx_core::query_builder
Runtime query-builder API.
sqlx_core::any::AnyQueryResult
sqlx_core::postgres::types::PgLQueryVariant
sqlx_core::mssql::MssqlQueryResult
sqlx_core::mysql::MySqlQueryResult
sqlx_core::query_scalar::query_scalar_with
Make a SQL query, with the given arguments, that is mapped …
sqlx_core::statement::Statement::query_scalar_with
sqlx_core::any::AnyStatement::query_scalar_with
sqlx_core::mssql::MssqlStatement::query_scalar_with
sqlx_core::mysql::MySqlStatement::query_scalar_with
sqlx_core::postgres::PgStatement::query_scalar_with
sqlx_core::sqlite::SqliteStatement::query_scalar_with
sqlx_core::sqlite::SqliteQueryResult
sqlx_core::postgres::types::PgLQueryVariantFlag
Modifiers that can be set to non-star labels
No results :(
Try on DuckDuckGo?

Or try looking in one of these:
  • The Rust Reference for technical details about the language.
  • Rust By Example for expository code examples.
  • The Rust Book for introductions to language features and the language itself.
  • Docs.rs for documentation of crates released on crates.io.
sqlx_core::query::query
Make a SQL query.
sqlx_core::statement::Statement::query
sqlx_core::any::AnyStatement::query
sqlx_core::mssql::MssqlStatement::query
sqlx_core::mysql::MySqlStatement::query
sqlx_core::postgres::PgStatement::query
sqlx_core::sqlite::SqliteStatement::query
sqlx_core::query_builder::QueryBuilder::build
Produce an executable query from this builder.
sqlx_core::query::query_with
Make a SQL query, with the given arguments.
sqlx_core::statement::Statement::query_with
sqlx_core::any::AnyStatement::query_with
sqlx_core::mssql::MssqlStatement::query_with
sqlx_core::mysql::MySqlStatement::query_with
sqlx_core::postgres::PgStatement::query_with
sqlx_core::sqlite::SqliteStatement::query_with