Re: [Haskell-cafe] Takusen and iteratee problem

2010-03-20 Thread Vasyl Pasternak
Hi, seems, that I found how to solve it. I replased `mtl` dependency with `transformers` and `monads-fd` and everything works fine. BTW. Iteratee and Takusen didn't want to work because of different instances of MonadIO (Iteratee needs MonadIO from transformers package, but Takusen implements Mona

Re: [Haskell-cafe] Takusen and iteratee problem

2010-03-19 Thread Valery V. Vorotyntsev
> Today I stuck with the following problem: I want to read a file with > iteratee package, and but it to database through Takusen package, but > it doesn't work. The `Takusen` was built with `mtl` package, and > `iteratee` - with `transformers`, so they are conflicting when used > simultaneously.

Re: [Haskell-cafe] Takusen and iteratee problem

2010-03-19 Thread Jason Dagit
On Fri, Mar 19, 2010 at 2:17 PM, Vasyl Pasternak wrote: > Hello Cafe. > > Today I stuck with the following problem: I want to read a file with > iteratee package, and but it to database through Takusen package, but > it doesn't work. The `Takusen` was built with `mtl` package, and > `iteratee` - w

[Haskell-cafe] Takusen and iteratee problem

2010-03-19 Thread Vasyl Pasternak
Hello Cafe. Today I stuck with the following problem: I want to read a file with iteratee package, and but it to database through Takusen package, but it doesn't work. The `Takusen` was built with `mtl` package, and `iteratee` - with `transformers`, so they are conflicting when used simultaneously