Struct diesel::query_builder::DeleteStatement [] [src]

pub struct DeleteStatement<T, U, Ret = NoReturningClause> { /* fields omitted */ }

Represents a SQL DELETE statement.

The type parameters on this struct represent:

  • T: The table we are deleting from.
  • U: The WHERE clause of this query. The exact types used to represent this are private, and you should not make any assumptions about them.
  • Ret: The RETURNING clause of this query. The exact types used to represent this are private. You can safely rely on the default type representing the lack of a RETURNING clause.

Methods

impl<T, U> DeleteStatement<T, U, NoReturningClause>
[src]

[src]

Adds the given predicate to the WHERE clause of the statement being constructed.

If there is already a WHERE clause, the predicate will be appended with AND. There is no difference in behavior between delete(table.filter(x)) and delete(table).filter(x).

Example

let deleted_rows = diesel::delete(users)
    .filter(name.eq("Sean"))
    .execute(&connection);
assert_eq!(Ok(1), deleted_rows);

let expected_names = vec!["Tess".to_string()];
let names = users.select(name).load(&connection);

assert_eq!(Ok(expected_names), names);

impl<T, U> DeleteStatement<T, U, NoReturningClause>
[src]

[src]

Specify what expression is returned after execution of the delete.

Examples

Deleting a record:

let deleted_name = diesel::delete(users.filter(name.eq("Sean")))
    .returning(name)
    .get_result(&connection);
assert_eq!(Ok("Sean".to_string()), deleted_name);

Trait Implementations

impl<T: Debug, U: Debug, Ret: Debug> Debug for DeleteStatement<T, U, Ret>
[src]

[src]

Formats the value using the given formatter.

impl<T: Clone, U: Clone, Ret: Clone> Clone for DeleteStatement<T, U, Ret>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: Copy, U: Copy, Ret: Copy> Copy for DeleteStatement<T, U, Ret>
[src]

impl<T, U, Ret, Predicate> FilterDsl<Predicate> for DeleteStatement<T, U, Ret> where
    U: WhereAnd<Predicate>,
    Predicate: AppearsOnTable<T>, 
[src]

The type returned by .filter.

[src]

See the trait documentation.

impl<T, U, Ret, DB> QueryFragment<DB> for DeleteStatement<T, U, Ret> where
    DB: Backend,
    T: Table,
    T::FromClause: QueryFragment<DB>,
    U: QueryFragment<DB>,
    Ret: QueryFragment<DB>, 
[src]

[src]

Walk over this QueryFragment for all passes. Read more

[src]

Converts this QueryFragment to its SQL representation. Read more

[src]

Serializes all bind parameters in this query. Read more

[src]

Is this query safe to store in the prepared statement cache? Read more

impl<T, U> AsQuery for DeleteStatement<T, U, NoReturningClause> where
    T: Table,
    T::AllColumns: SelectableExpression<T>,
    DeleteStatement<T, U, ReturningClause<T::AllColumns>>: Query
[src]

The SQL type of Self::Query

What kind of query does this type represent?

[src]

Converts a type which semantically represents a SQL query into the actual query being executed. See the trait level docs for more. Read more

impl<T, U, Ret> Query for DeleteStatement<T, U, ReturningClause<Ret>> where
    T: Table,
    Ret: SelectableExpression<T>, 
[src]

The SQL type that this query represents. Read more

impl<T, U, Ret, Conn> RunQueryDsl<Conn> for DeleteStatement<T, U, Ret>
[src]

[src]

Executes the given command, returning the number of rows affected. Read more

[src]

Executes the given query, returning a Vec with the returned rows. Read more

[src]

Runs the command, and returns the affected row. Read more

[src]

Runs the command, returning an Vec with the affected rows. Read more

[src]

Attempts to load a single record. Read more