Hoogle Search

Within LTS Haskell 24.20 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. (*.) :: PersistField a => SqlExpr (Value a) -> SqlExpr (Value a) -> SqlExpr (Value a)

    esqueleto Database.Esqueleto

    This operator translates to the SQL operator *. This does not require or assume anything about the SQL values. Interpreting what *. means for a given type is left to the database engine. Example:

    user ^. UserAge *. val 10
    

  2. (*=.) :: (PersistEntity val, PersistField a) => EntityField val a -> SqlExpr (Value a) -> SqlExpr (Entity val) -> SqlExpr Update

    esqueleto Database.Esqueleto

    No documentation available.

  3. (++.) :: SqlString s => SqlExpr (Value s) -> SqlExpr (Value s) -> SqlExpr (Value s)

    esqueleto Database.Esqueleto

    The || string concatenation operator (named after Haskell's ++ in order to avoid naming clash with ||.). Supported by SQLite and PostgreSQL. MySQL support requires setting the SQL mode to PIPES_AS_CONCAT or ANSI - see this StackOverflow answer.

  4. (+.) :: PersistField a => SqlExpr (Value a) -> SqlExpr (Value a) -> SqlExpr (Value a)

    esqueleto Database.Esqueleto

    This operator translates to the SQL operator +. This does not require or assume anything about the SQL values. Interpreting what +. means for a given type is left to the database engine. Example:

    user ^. UserAge +. val 10
    

  5. (+=.) :: (PersistEntity val, PersistField a) => EntityField val a -> SqlExpr (Value a) -> SqlExpr (Entity val) -> SqlExpr Update

    esqueleto Database.Esqueleto

    No documentation available.

  6. (-.) :: PersistField a => SqlExpr (Value a) -> SqlExpr (Value a) -> SqlExpr (Value a)

    esqueleto Database.Esqueleto

    This operator translates to the SQL operator -. This does not require or assume anything about the SQL values. Interpreting what -. means for a given type is left to the database engine. Example:

    user ^. UserAge -. val 10
    

  7. (-=.) :: (PersistEntity val, PersistField a) => EntityField val a -> SqlExpr (Value a) -> SqlExpr (Entity val) -> SqlExpr Update

    esqueleto Database.Esqueleto

    No documentation available.

  8. (/.) :: PersistField a => SqlExpr (Value a) -> SqlExpr (Value a) -> SqlExpr (Value a)

    esqueleto Database.Esqueleto

    This operator translates to the SQL operator /. This does not require or assume anything about the SQL values. Interpreting what /. means for a given type is left to the database engine. Example:

    user ^. UserAge /. val 10
    

  9. (/=.) :: (PersistEntity val, PersistField a) => EntityField val a -> SqlExpr (Value a) -> SqlExpr (Entity val) -> SqlExpr Update

    esqueleto Database.Esqueleto

    No documentation available.

  10. (<.) :: PersistField typ => SqlExpr (Value typ) -> SqlExpr (Value typ) -> SqlExpr (Value Bool)

    esqueleto Database.Esqueleto

    This operator translates to the SQL operator <. Example:

    where_ $ val 20 <. user ^. UserAge
    

Page 116 of many | Previous | Next