QueryBuilder

Struct QueryBuilder 

Source
pub struct QueryBuilder<'a, T> { /* private fields */ }
Expand description

A fluent Query Builder for constructing SQL queries.

Handles SELECT, INSERT, filtering (WHERE), pagination (LIMIT/OFFSET), and ordering.

Implementations§

Source§

impl<'a, T: Model + Send + Sync + Unpin> QueryBuilder<'a, T>

Source

pub fn new( db: &'a Database, table_name: &'static str, columns_info: Vec<ColumnInfo>, columns: Vec<String>, ) -> Self

Creates a new QueryBuilder instance.

Usually called via db.model::<T>().

Source

pub fn filter<V>(self, col: &'static str, op: &'static str, value: V) -> Self
where V: 'static + for<'q> Encode<'q, Any> + Type<Any> + Send + Sync + Clone,

Adds a WHERE clause to the query.

§Arguments
  • col - The column name.
  • op - The operator (e.g., “=”, “>”, “LIKE”).
  • value - The value to compare against.
§Example
db.model::<User>().filter("age", ">", 18).scan().await?;
Source

pub fn order(self, order: &str) -> Self

Source

pub fn preload(self) -> Self

Source

pub fn join(self) -> Self

Source

pub fn pagination( self, max_value: usize, default: usize, page: usize, value: isize, ) -> Result<Self, Error>

Source

pub fn select(self, columns: &str) -> Self

Selects specific columns to return.

By default, all columns (*) are selected.

Source

pub fn offset(self, offset: usize) -> Self

Sets the query offset (pagination).

Source

pub fn limit(self, limit: usize) -> Self

Sets the maximum number of records to return.

Source

pub async fn insert(&self, model: &T) -> Result<&Self, Error>

Inserts a new record into the database based on the model instance.

Uses manual string parsing to bind values (temporary solution until fuller serialization support).

Source

pub fn to_sql(&self) -> String

Returns the generated SQL string (for debugging purposes, without arguments).

Source

pub async fn scan<R>(self) -> Result<Vec<R>, Error>
where R: for<'r> FromRow<'r, AnyRow> + Send + Unpin,

Executes the query and returns a list of results.

§Example
let users: Vec<User> = db.model::<User>().scan().await?;
Source

pub async fn first<R>(self) -> Result<R, Error>
where R: for<'r> FromRow<'r, AnyRow> + Send + Unpin,

Executes the query and returns only the first result.

Automatically adds LIMIT 1 and orders by Primary Key if available.

§Example
let user: User = db.model::<User>().filter("id", "=", 1).first().await?;

Auto Trait Implementations§

§

impl<'a, T> Freeze for QueryBuilder<'a, T>

§

impl<'a, T> !RefUnwindSafe for QueryBuilder<'a, T>

§

impl<'a, T> Send for QueryBuilder<'a, T>
where T: Send,

§

impl<'a, T> Sync for QueryBuilder<'a, T>
where T: Sync,

§

impl<'a, T> Unpin for QueryBuilder<'a, T>
where T: Unpin,

§

impl<'a, T> !UnwindSafe for QueryBuilder<'a, T>

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.

Source§

impl<T> Instrument for T

Source§

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

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

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.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

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

Source§

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>,

Source§

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.
Source§

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

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

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
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

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