Re: [Haskell-cafe] hsql-mysql encoding issues

2012-10-29 Thread Alexander Bau
Hi, what DB binding should I rather be using? mongoDB [1] works well (also for data with umlauts) for my feed aggregator [2]. Best regards, Alex [1] http://hackage.haskell.org/package/mongoDB [2] http://hackage.haskell.org/package/lucienne signature.asc Description: OpenPGP digital

Re: [Haskell-cafe] hsql-mysql encoding issues

2012-10-24 Thread Johannes Waldmann
Daniel van den Eijkel dvde at gmx.net writes: ... but I use HDBC and I'm happy with it. including its handling of character encodings? (That is, do you have, e.g., texts with umlauts in your data?) ___ Haskell-Cafe mailing list

Re: [Haskell-cafe] hsql-mysql encoding issues

2012-10-24 Thread Daniel van den Eijkel
So far I used HDBC with mysql and sqlite3, in both cases with UTF8 encoded data (filenames including chinese characters, umlauts etc, e.g.). (After connecting to mysql, I use the statement set names utf8; sqlite does not need this) Am 10/24/12 11:10 AM, schrieb Johannes Waldmann: Daniel van

Re: [Haskell-cafe] hsql-mysql encoding issues

2012-10-23 Thread Daniel van den Eijkel
Hi, I can't say anything about HSQL, but I use HDBC and I'm happy with it. [1] says it's the most popular database for Haskell. Best, Daniel [1] http://en.wikibooks.org/wiki/Haskell/Database Am 10/23/12 4:21 PM, schrieb Johannes Waldmann: Hi. I am using hsql-(mysql-)1.8.2 When compiled