Thanks Greg,
both references are very interesting.
If I understand correctly, the DSH approach is to convert Haskell
programs into SQL and run them inside the database. This seems a good
solution when the program objective is to change data in the database
according to some business logic or
On Fri, Jul 1, 2011 at 8:45 PM, Tobias Schoofs wrote:
> Database programs, usually, do not just issue isolated SQL statements, but
> implement a processing logic with nested queries and DML statements.
Frequently using cursors or issuing queries from a loop often means
you've missed out on the d
Sorry for the awful message format in the first try!
I am studying Haskell database libraries.
In particular I am looking at
haskelldb and the Takusen Database.Enumerator library.
In haskelldb, there are very good ideas aiming to represent database
objects as (typeable) Haskell objects, instead
Hi Tobias,
Have you seen DSH [1]? You might also be interested in Persistent [2], but
it sounds like it has different goals than what you are after.
[1] http://hackage.haskell.org/package/DSH
[2] http://www.yesodweb.com/book/persistent
___
Haskell-Cafe
"HTML emails considered harmful".
On 1 Jul 2011, at 23:17, Jack Henahan wrote:
> "'Courier New, 18pt' considered harmful"?
>
> On Jul 1, 2011, at 3:08 PM, Christopher Done wrote:
>
>> On 1 July 2011 20:51, Yves P wrote:
>>> There is something that bothers me with that text, I can't get to
"'Courier New, 18pt' considered harmful"?
On Jul 1, 2011, at 3:08 PM, Christopher Done wrote:
> On 1 July 2011 20:51, Yves P wrote:
>> There is something that bothers me with that text, I can't get to grasp what
>> it is...
>
> It's bigger than Godzilla?
>
> ___
On 1 July 2011 20:51, Yves P wrote:
> There is something that bothers me with that text, I can't get to grasp what
> it is...
It's bigger than Godzilla?
___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/
There is something that bothers me with that text, I can't get to grasp what
it is...
2011/7/1 Tobias Schoofs
> **
> I am studying Haskell database libraries.
> In particular I am looking at
> haskelldb and the Takusen Database.Enumerator library.
>
> In haskelldb, there are very good ideas aimi
I am studying Haskell database libraries.
In particular I am looking at
haskelldb and the Takusen Database.Enumerator library.
In haskelldb, there are very good ideas aiming to represent database
objects as (typeable) Haskell objects, instead of embedding SQL in plain
strings.
This is really an