persistent-0.1.0: Type-safe, non-relational, multi-backend persistence.

Database.Persist

Synopsis

Documentation

class PersistEntity val whereSource

A single database entity. For example, if writing a blog application, a blog entry would be an entry, containing fields such as title and content.

Associated Types

data Key val Source

The unique identifier associated with this entity. In general, backends also define a type synonym for this, such that "type MyEntityId = Key MyEntity".

data Update val Source

Fields which can be updated using the update and updateWhere functions.

data Filter val Source

Filters which are available for select, updateWhere and deleteWhere. Each filter constructor specifies the field being filtered on, the type of comparison applied (equals, not equals, etc) and the argument for the comparison.

data Order val Source

How you can sort the results of a select.

data Unique val Source

Unique keys in existence on this entity.

class PersistBackend m whereSource

Methods

initialize :: PersistEntity val => val -> m ()Source

Prepare database for this entity, if necessary. In SQL, this creates values and indices if they don't exist. The first argument is not used, so you can used undefined.

insert :: PersistEntity val => val -> m (Key val)Source

Create a new record in the database, returning the newly created identifier.

replace :: PersistEntity val => Key val -> val -> m ()Source

Replace the record in the database with the given key. Result is undefined if such a record does not exist.

update :: PersistEntity val => Key val -> [Update val] -> m ()Source

Update individual fields on a specific record.

updateWhere :: PersistEntity val => [Filter val] -> [Update val] -> m ()Source

Update individual fields on any record matching the given criterion.

delete :: PersistEntity val => Key val -> m ()Source

Delete a specific record by identifier. Does nothing if record does not exist.

deleteBy :: PersistEntity val => Unique val -> m ()Source

Delete a specific record by unique key. Does nothing if no record matches.

deleteWhere :: PersistEntity val => [Filter val] -> m ()Source

Delete all records matching the given criterion.

get :: PersistEntity val => Key val -> m (Maybe val)Source

Get a record by identifier, if available.

getBy :: PersistEntity val => Unique val -> m (Maybe (Key val, val))Source

Get a record by unique key, if available. Returns also the identifier.

select :: PersistEntity val => [Filter val] -> [Order val] -> m [(Key val, val)]Source

Get all records matching the given criterion in the specified order. Returns also the identifiers.

mkPersist :: [EntityDef] -> Q [Dec]Source

Create data types and appropriate PersistEntity instances for the given EntityDefs. Works well with the persist quasi-quoter.

persist :: QuasiQuoterSource

Converts a quasi-quoted syntax into a list of entity definitions, to be used as input to the template haskell generation code (mkPersist).