Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
98 views

Sqlite Foreign Keys

I try to enable foreign keys using HDBC-sqlite3 haskell library. This library uses a little helper c - function int sqlite3_open2(const char *filename, finalizeonce **ppo) which calls in turn ...
5
votes
1answer
118 views

Convert time for use in mysql

I am trying to load timestamps into mysql. All my times are UTCTime objects. The HDBC mysql implementation does not seem to like UTCTime objects although internally the documentation says that it ...
5
votes
3answers
1k views

Cheapest way to to determine if a MySQL connection is still alive

I have a pool of MySQL connections for a web-based data service. When it starts to service a request, it takes a connection from the pool to use. The problem is that if there has been a significant ...
4
votes
2answers
637 views

Concurrent DB connection pool in Haskell

I am a Java programmer who learns Haskell. I work on a small web-app that uses Happstack and talks to a database via HDBC. I've written select and exec functions and I use them like this: module ...
2
votes
1answer
80 views

HDBC-mysql “command out of sync”

I'm writing a web app using Snap 0.6 and the Snaplet-hdbc infrastructure. In the backend, I'm using HDBC-mysql to connect to MySQL. But when running the app, it gets a "Command out of sync, you can't ...
2
votes
1answer
134 views

cannot load HDBC-postgresql

I am on windows XP. I have installed Yesod by following the steps on this page: http://www.yesodweb.com/page/five-minutes I have created a scaffolded application with Postgresql persistence. When I ...
2
votes
1answer
182 views

HDBC -odbc connecting with haskell

Now I want to connect db with haskell,I tried to install HDBC-ODBC,HSQL-ODBC,and HDBC-mysql using cabal,I was able to configure sqlite3,How I can add these package? I'm getting this error when I try ...
2
votes
1answer
127 views

HDBC Driver for FireBird Database

Can someone point me to an HDBC(Haskell) Driver for FireBird Database, Nothing turned up on Google. Is my best option at this point to use an HDBC-ODBC bridge to connect to a FireBird database from a ...
2
votes
1answer
844 views

Haskell, HDBC, ODBC, MySQL and Mac OS X

I'm trying to use Haskell (version 6.10.3) and HDBC to connect to a MySQL Database. I've chosen to do it with Haskell ODBC. I've used cabal to install HDBC (2.1.1) and HDBC-ODBC (2.1.0.0). I've ...
1
vote
1answer
87 views

How do I use postgresqlConnect in the Database.HaskellDB.HDBC.PostgreSQL module?

I am not quite sure how to use the postgresqlConnect function in module Database.HaskellDB.HDBC.PostgreSQL to connect to a PostgreSQL database. The Haddock documentation page only states the type ...
1
vote
1answer
134 views

Haskell HDBC-Sqlite3 always returns SqlByteString values

I am using HDBC sqlite3 haskell driver to access local sqlite3 database which PRAGMA encoding is UTF-8 And as result, for example for SELECT id, title FROM some_table I'm always getting the ...