Results for “Std.Db.Query.Statement”
47 matching declarations
Use module:Std.List, kind:fn, or is:exact. Put a Pudu type after ::.
- Std.Db.Query.Statement
The parts are held rather than one text, because a statement is built a
- Std.Db.Query.Statement
Std.Db.Query.QueryError -> Std.Db.Store.StoreErrorThe parts are held rather than one text, because a statement is built a
- Std.Db.Query.Shape.select
&Std.Db.Query.Shape.Select -> Result[Std.Db.Query.Statement, Std.Db.Query.QueryError]A whole query as a statement, or the first thing wrong with it.
- Std.Db.Query.also
&Std.Db.Query.Statement -> Str -> Str -> Std.Db.Driver.Value -> Result[Std.Db.Query.Statement, Std.Db.Query.QueryError]A further condition that must also hold.
- Std.Db.Query.andOn
&Std.Db.Query.Statement -> &Std.Db.Schema.Column[T] -> Std.Db.Schema.Comparison -> &T -> Std.Db.Query.Statement where T: BindableA further condition that must also hold.
- Std.Db.Query.counting
Str -> Result[Std.Db.Query.Statement, Std.Db.Query.QueryError]How many rows a table holds.
- Std.Db.Query.deleteFrom
Str -> Result[Std.Db.Query.Statement, Std.Db.Query.QueryError]Rows removed from a table.
- Std.Db.Query.either
&Std.Db.Query.Statement -> Str -> Str -> Std.Db.Driver.Value -> Result[Std.Db.Query.Statement, Std.Db.Query.QueryError]A further condition where either may hold.
- Std.Db.Query.empty
Std.Db.Query.StatementA statement with nothing in it.
- Std.Db.Query.except
&Std.Db.Query.Statement -> &Std.Db.Query.Statement -> Std.Db.Query.StatementThe rows in the first and not the second.
- Std.Db.Query.from
Str -> Result[Std.Db.Query.Statement, Std.Db.Query.QueryError]Everything from a table.
- Std.Db.Query.fromTable
&Std.Db.Schema.Column[T] -> Std.Db.Query.StatementEverything from the table a column belongs to.
- Std.Db.Query.insert
Str -> &Array[Str] -> &Array[Std.Db.Driver.Value] -> Result[Std.Db.Query.Statement, Std.Db.Query.QueryError]A row added to a table, from the columns and the values that fill them.
- Std.Db.Query.intersect
&Std.Db.Query.Statement -> &Std.Db.Query.Statement -> Std.Db.Query.StatementThe rows in both.
- Std.Db.Query.limit
&Std.Db.Query.Statement -> Int -> Std.Db.Query.StatementAt most this many rows.
- Std.Db.Query.matching
&Std.Db.Query.Statement -> Str -> Str -> Std.Db.Driver.Value -> Result[Std.Db.Query.Statement, Std.Db.Query.QueryError]A condition on a column, with the value travelling beside the statement.
- Std.Db.Query.matchingMissing
&Std.Db.Query.Statement -> Str -> Result[Std.Db.Query.Statement, Std.Db.Query.QueryError]A condition that a column holds nothing.
- Std.Db.Query.matchingOneOf
&Std.Db.Query.Statement -> Str -> &Array[Std.Db.Driver.Value] -> Result[Std.Db.Query.Statement, Std.Db.Query.QueryError]A condition that a column is one of several values.
- Std.Db.Query.missingOn
&Std.Db.Query.Statement -> &Std.Db.Schema.Column[T] -> Std.Db.Query.StatementA condition that a column holds nothing.
- Std.Db.Query.offset
&Std.Db.Query.Statement -> Int -> Std.Db.Query.StatementStarting after this many rows.
- Std.Db.Query.on
&Std.Db.Query.Statement -> &Std.Db.Schema.Column[T] -> Std.Db.Schema.Comparison -> &T -> Std.Db.Query.Statement where T: BindableA condition on a column, with the column and the comparison both values.
- Std.Db.Query.orOn
&Std.Db.Query.Statement -> &Std.Db.Schema.Column[T] -> Std.Db.Schema.Comparison -> &T -> Std.Db.Query.Statement where T: BindableA further condition where either may hold.
- Std.Db.Query.orderBy
&Std.Db.Query.Statement -> Str -> Bool -> Result[Std.Db.Query.Statement, Std.Db.Query.QueryError]The order rows come back in.
- Std.Db.Query.orderOn
&Std.Db.Query.Statement -> &Std.Db.Schema.Column[T] -> Bool -> Std.Db.Query.StatementThe order rows come back in, by a column the compiler knows.
- Std.Db.Query.raw
Str -> &Array[Std.Db.Driver.Value] -> Std.Db.Query.StatementA statement written out in full, with its values beside it.
- Std.Db.Query.returning
&Std.Db.Query.Statement -> &Array[Str] -> Result[Std.Db.Query.Statement, Std.Db.Query.QueryError]A statement that answers with the rows it changed.
- Std.Db.Query.selecting
&Array[Str] -> Str -> Result[Std.Db.Query.Statement, Std.Db.Query.QueryError]Named columns from a table.
- Std.Db.Query.text
Str -> Std.Db.Query.StatementA statement from text the program wrote, carrying no values.
- Std.Db.Query.textIn
&Std.Db.Query.Statement -> &Std.Db.Driver.Placeholders -> StrThe same statement, spelled the way one backend writes a placeholder.
- Std.Db.Query.textOf
&Std.Db.Query.Statement -> StrThe text a statement holds, which a program may read before running it.
- Std.Db.Query.textValuesOf
&Std.Db.Query.Statement -> Array[Option[Str]]The same values as the text a wire carries.
- Std.Db.Query.then
&Std.Db.Query.Statement -> &Std.Db.Query.Statement -> Std.Db.Query.StatementTwo statements one after the other, with the second's placeholders
- Std.Db.Query.union
&Std.Db.Query.Statement -> &Std.Db.Query.Statement -> Bool -> Std.Db.Query.StatementTwo results together, with the second's values following the first's.
- Std.Db.Query.update
Str -> &Array[Str] -> &Array[Std.Db.Driver.Value] -> Result[Std.Db.Query.Statement, Std.Db.Query.QueryError]Columns of a table set to new values.
- Std.Db.Query.valueCount
&Std.Db.Query.Statement -> IntHow many values a statement carries.
- Std.Db.Query.valuesOf
&Std.Db.Query.Statement -> Array[Std.Db.Driver.Value]The values that travel beside it.
- Std.Db.Query.withQuery
Str -> &Std.Db.Query.Statement -> &Std.Db.Query.Statement -> Result[Std.Db.Query.Statement, Std.Db.Query.QueryError]A named result the rest of a statement reads from.
- Std.Db.Query.withValue
&Std.Db.Query.Statement -> Str -> Std.Db.Driver.Value -> Std.Db.Query.StatementA statement with one more piece of text and one more value.
- Std.Db.Store.deleteOf
&Std.Db.Store.Stored[T] -> Option[Str] -> Result[Std.Db.Query.Statement, Std.Db.Store.StoreError]The statement that removes the one a key names.
- Std.Db.Store.forParent
&Std.Db.Store.Stored[T] -> Str -> Option[Str] -> Result[Std.Db.Query.Statement, Std.Db.Store.StoreError]What belongs to one parent, which is what belongs to a list of one.
- Std.Db.Store.forParents
&Std.Db.Store.Stored[T] -> Str -> &Array[Option[Str]] -> Result[Std.Db.Query.Statement, Std.Db.Store.StoreError]The statement that reads everything belonging to any of these parents.
- Std.Db.Store.insertOf
&Std.Db.Store.Stored[T] -> T -> Result[Std.Db.Query.Statement, Std.Db.Store.StoreError]The statement that adds one.
- Std.Db.Store.loadWhere
Std.Db.Session.Connection -> &Std.Db.Store.Stored[T] -> &Std.Db.Query.Statement -> Result[(Array[T], Std.Db.Session.Connection), Std.Db.Store.StoreError]Read everything a statement chooses.
- Std.Db.Store.loadWhereIn
&Std.Db.Store.Target -> &Std.Db.Store.Stored[T] -> &Std.Db.Query.Statement -> Result[Array[T], Std.Db.Store.StoreError]Read everything a statement chooses through any driver.
- Std.Db.Store.selectAllOf
&Std.Db.Store.Stored[T] -> Result[Std.Db.Query.Statement, Std.Db.Store.StoreError]The statement that reads every one.
- Std.Db.Store.selectOf
&Std.Db.Store.Stored[T] -> Option[Str] -> Result[Std.Db.Query.Statement, Std.Db.Store.StoreError]The statement that reads the one a key names.
- Std.Db.Store.updateOf
&Std.Db.Store.Stored[T] -> Option[Str] -> T -> Result[Std.Db.Query.Statement, Std.Db.Store.StoreError]The statement that changes the one a key names.
