Tagged Questions
2
votes
1answer
64 views
How to querying the database inside the makeApplication function
I'm attempting to fork a non-web service in my Yesod application, and it needs to do some interaction with database. From this post I decided to put the service in makeApplication. I would like my ...
8
votes
1answer
146 views
persistent: How do I get the I in ACID
Assume I'm doing the following steps in a transaction:
read some data A from the database
do some calculation based on it
write some data B to the database
Is it possible to make this transaction ...
4
votes
2answers
91 views
What's the best way to do many-to-many in Persistent Yesod?
So my /config/models looks like this.
Person
name Text
Car
name Text
PersonCar
personId PersionId eq
carId CarId eq
UniquePersonCar personId carId
Assume the inputs in the database are ...
4
votes
0answers
105 views
Persistent: CRUD TypeClass
I am trying to write a typeclass that simplifies writing a CRUD backend using persistent, aeson and scotty
Here is my idea:
runDB x = liftIO $ do info <- mysqlInfo
...
1
vote
1answer
112 views
Running join on Maybe Relation
I have a model
Assignment
blah Text
....
and a model
File
assignmentId AssignmentId Maybe
...
and I want to get all the files associated with an assignment in a join query. I have ...
0
votes
1answer
79 views
Persistent: Convert Text to Key
I'm using persistent and persistent-mysql. I have a Monad SqlM
type SqlM a = SqlPersist (ResourceT IO) a)
Inside my function
testFun :: T.Text -> SqlM ()
testFun someId = ...
I can query ...
1
vote
0answers
43 views
persistent with a model without fields (attributes) and mkMigrate parameters
First, if the model file has
User
ident Text
password Text Maybe
UniqueUser ident
Myuser
we can type
cabal-dev install && yesod --dev devel
and everything works on the first ...
0
votes
1answer
81 views
yesod persistent: get list of entities from list of keys
suppose I have fooIds :: [Key Foo]. How would I get foos :: [Foo]?
I tried
do
foos <- map get fooIds
but it gives me
No instance for (MonadBaseControl IO m0)
arising from a use of `get'
...
1
vote
1answer
67 views
Haskell and postgresql-libpq
I've some issue with postgresql-libpq (Windows x32 OS).
I am trying to execute either one 'ghci -package postgresql-libpq' or 'yesod devel' in my the project directory I got the such error "Entry ...
2
votes
1answer
134 views
yesod persistent: get Entity value within hamlet
let's say my config/models file looks like this:
Pet
name Text
owner OwnerId
Owner
name Text
I can get the pet's name like this:
$forall Entity key pet <- pets
...
1
vote
1answer
102 views
Yesod/Persistent testing with bracket pattern
I'm very new to Haskell, so I'm having trouble absorbing all of the advanced features used in Yesod such as type instances and equality constraints. I am trying to implement the bracket pattern in ...
2
votes
1answer
61 views
Yesod/Persistent entity deriving Show
In the Persistent chapter of the Yesod book, an example is given where this entity
{-# LANGUAGE QuasiQuotes, TypeFamilies, GeneralizedNewtypeDeriving, TemplateHaskell, OverloadedStrings, GADTs #-}
...
1
vote
1answer
26 views
Yesod/Persistent field with Eq
In the Persistent chapter of the Yesod book, a certain field is given an Eq suffix, but it is never explained why. In the Relations section, we see the following models:
Person
name String
...
1
vote
1answer
102 views
Insert list of values into database with persistent
Assuming I have this code (simplified from "Synopsis")
{-# LANGUAGE QuasiQuotes, TemplateHaskell, TypeFamilies, OverloadedStrings #-}
{-# LANGUAGE GADTs, FlexibleContexts #-}
import Database.Persist
...
4
votes
0answers
221 views
Using persistent from within a Conduit
First up, a simplified version of the task I want to accomplish: I have several large files (amounting to 30GB) that I want to prune for duplicate entries. To this end, I establish a database of ...
1
vote
2answers
205 views
Yesod persistent-postgresql rawSql queries with column-list wildcards producing syntax errors
I'm using the persistent-postgresql library from Yesod, and I'd like to execute the following raw query:
SELECT * FROM utterance WHERE is_target IS NULL ORDER BY RANDOM() LIMIT 1000
to select 1000 ...
2
votes
1answer
141 views
Monad troubles porting from Lift to Yesod's Persistent
I have a Lift app I'm porting to Yesod as a way to learn the framework and Haskell. Part of the app resides only on the TCP and database layers: parsing incoming bytes from a socket connection and ...
2
votes
0answers
372 views
Haskell arithmetic operations and DB persistence of arbitrary/fixed precision numbers
As a Haskell (GHC platform) beginner I bumped into a problem of dealing with data types and arithmetic operations related to business domain that involves currency/money operations and I'm looking for ...
5
votes
1answer
474 views
MongoDB Example for Yesod / Persistent
Haskell and Yesod newbie here. I've been trying to follow the Integration with Yesod example from the Persistent chapter in the Yesod book (http://www.yesodweb.com/book/persistent). The Sqlite ...
1
vote
0answers
187 views
SQL views in Yesod/persistent
In http://www.yesodweb.com/book/persistent there is no mention of SQL views.
I (even in imperative languages) have been very fond of immutable database schema design. i.e. only INSERTs and SELECTs - ...
6
votes
1answer
289 views
How do I define a composite key in Persistent
How do I declare to Persistent that I have a table the primary key of which is a combination of two fields?
For example, assume I have a table containing first_name and last_name, then in SQL syntax ...
4
votes
1answer
143 views
What are the rules of mapping from PersistEntity/PersistField to column and table names in the DB
I need to work with an existing (MySql) db, where the names of tables and columns are already defined.
If I understand the documentation properly (and I didn't find good documentation on this ...
1
vote
1answer
165 views
Newbie problems with Persistent
So I am planing to use Persistent 0.9.0.1 with Sqlite, and I am going through the tutorial: http://www.yesodweb.com/book/persistent
The simple snippet with insert and query fails to compile:
-- ...
6
votes
1answer
354 views
Correct way to do a “join” in persist with yesod
Consider the models:
Player
name Text
nick Text
email Text Maybe
phone Text Maybe
note Textarea Maybe
minutes Int Maybe
deriving
Table
name Text
game Text
...
0
votes
1answer
108 views
Automatic migration between different Persistent backends
I wonder if there's a tool for automatic migrations between different DBMS's using the Persistent package. In theory, it should be relatively easy to do, so I thought there should be a tool already ...
26
votes
2answers
852 views
What are the rules about concurrently accessing a persistent database
It seems the rules about concurrent access are undocumented (on the Haskell side) and simply assume the developer is familiar with the particular backend being used. For production needs this is a ...
2
votes
1answer
380 views
Baffled by selectOneMany in Yesod
Sweet but simple, how do Persistent joins work? Consider the following model:
Person
number Int
numberOfEyes Int
firstName FirstnamesId
lastName LastnamesId
Lastnames
lastname ...
2
votes
1answer
70 views
Making Custom Instances of PersistBackend
I have a monad transformer stack of the form:
newtype T m a = T { unT :: StateT State (SqlPersist m) a }
deriving (Monad, MonadState State)
And want to use the persistent insert and lookup ...
0
votes
0answers
328 views
Yesod Installation problems
Cabal cannot install the persistent dependency for Yesod. It returns with information that the right dependencies cannot be found. Yesod needs a certain dependency that cannot be found by cabal. I ...
0
votes
1answer
205 views
What's wrong with my logic?
>main :: IO ()
main = withPostgresqlConn "host=localhost user=Rocko port=5432 dbname=Rocko" $ runSqlConn $ do
runMigration migrateAll
let compDay = C.fromGregorian 2011 11 21
...
1
vote
3answers
108 views
Could someone explain to me how I should go about fixing this type signature?
Here's the code, I tried letting type inference figure out the function's type. While the code compiles, it fails at runtime.
Ambiguous type variables `b0', `m0' in the constraint:
(PersistBackend ...
1
vote
1answer
103 views
How do I make a column name in a table a Primary Key with Persistent?
Here's my model
>Test
testID Int
product Text
firmware Text
startDate Day
estimatedFinishDate Day
status Text
UniqueStartDate startDate
UniqueEstimatedFinishDate ...
