Hoogle Search
Within LTS Haskell 24.10 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
unsafePersistableRecordWidth :: Int -> PersistableRecordWidth apersistable-record Database.Record.Persistable Unsafely specify PersistableRecordWidth axiom from specified width of Haskell type a.
unsafePersistableSqlTypeFromNull :: q -> PersistableSqlType qpersistable-record Database.Record.Persistable Unsafely specify PersistableSqlType axiom from specified database null value which type is q.
definePersistableWidthInstance :: TypeQ -> [Name] -> Q [Dec]persistable-record Database.Record.TH Polymorphic PersistableWidth instance template.
defineSqlPersistableInstances :: TypeQ -> TypeQ -> [Name] -> Q [Dec]persistable-record Database.Record.TH Polymorphic record parser and printer instance templates for converting between list of SQL type and Haskell record type.
derivePersistableInstanceFromConvertible :: Q Type -> Q [Dec]relational-query-HDBC Database.HDBC.Record.TH Template to declare HDBC instances of DB-record against single value type.
findPersistentModelFiles :: FilePath -> Q (TExp [FilePath])persistent-discover Database.Persist.Discover Returns a list of all files with the .persistentmodels suffix.
allFiles :: [FilePath] allFiles = $$(findPersistentModelFiles "config/models/")
class
HasPersistBackend backendpersistent-mtl Database.Persist.Sql.Shim Class which allows the plucking of a BaseBackend backend from some larger type. For example, instance HasPersistBackend (SqlReadBackend, Int) where type BaseBackend (SqlReadBackend, Int) = SqlBackend persistBackend = unSqlReadBackend . fst
class HasPersistBackend backend =>
IsPersistBackend backendpersistent-mtl Database.Persist.Sql.Shim Class which witnesses that backend is essentially the same as BaseBackend backend. That is, they're isomorphic and backend is just some wrapper over BaseBackend backend.
type
SqlPersistM = SqlPersistT NoLoggingT ResourceT IOpersistent-mtl Database.Persist.Sql.Shim No documentation available.
type
SqlPersistT = ReaderT SqlBackendpersistent-mtl Database.Persist.Sql.Shim No documentation available.