Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

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

  1. class (Show BackendKey backend, Read BackendKey backend, Eq BackendKey backend, Ord BackendKey backend, PersistCore backend, PersistField BackendKey backend, ToJSON BackendKey backend, FromJSON BackendKey backend) => PersistStoreRead backend

    persistent Database.Persist.Class.PersistStore

    No documentation available.

  2. class PersistStoreRead backend => PersistUniqueRead backend

    persistent Database.Persist.Class.PersistUnique

    Queries against Unique keys (other than the id Key). Please read the general Persistent documentation to learn how to create Unique keys. Using this with an Entity without a Unique key leads to undefined behavior. A few of these functions require a single Unique, so using an Entity with multiple Uniques is also undefined. In these cases persistent's goal is to throw an exception as soon as possible, but persistent is still transitioning to that. SQL backends automatically create uniqueness constraints, but for MongoDB you must manually place a unique index on a field to have a uniqueness constraint.

  3. RepeatableRead :: IsolationLevel

    persistent Database.Persist.Sql

    No documentation available.

  4. type SqlBackendCanRead backend = (BackendCompatible SqlBackend backend, PersistQueryRead backend, PersistStoreRead backend, PersistUniqueRead backend)

    persistent Database.Persist.Sql

    A constraint synonym which witnesses that a backend is SQL and can run read queries.

  5. newtype SqlReadBackend

    persistent Database.Persist.Sql

    An SQL backend which can only handle read queries The constructor was exposed in 2.10.0.

  6. SqlReadBackend :: SqlBackend -> SqlReadBackend

    persistent Database.Persist.Sql

    No documentation available.

  7. type SqlReadT (m :: Type -> Type) a = forall backend . SqlBackendCanRead backend => ReaderT backend m a

    persistent Database.Persist.Sql

    Like SqlPersistT but compatible with any SQL backend which can handle read queries.

  8. StatementAlreadyFinalized :: Text -> PersistentSqlException

    persistent Database.Persist.Sql

    No documentation available.

  9. unSqlReadBackend :: SqlReadBackend -> SqlBackend

    persistent Database.Persist.Sql

    No documentation available.

  10. RepeatableRead :: IsolationLevel

    persistent Database.Persist.Sql.Types.Internal

    No documentation available.

Page 472 of many | Previous | Next