Shawn Lu
Shawn Lu

Reputation: 1566

How to connect to Oracle DB in Haskell

Can anyone share some tips on how to connect to Oracle DB using Haskell? I found it quite difficult. What I've done so far:

(1) Checked out Persistent's documentation, on this page http://www.yesodweb.com/book/persistent it mentions all the mainstream one but Oracle.

(2) Got this book "Developing Web Apps with Haskell and Yesod", no mention of Oracle

(3) Following http://book.realworldhaskell.org/read/using-databases.html I checked out HDBC odbc, found this page https://hackage.haskell.org/package/HDBC-odbc the instruction in the bottom is hard to follow because some of the required binaries can't be found on homebrew on Mac.

Just curious, how other engineers are connecting to Oracle using Haskell?

I've asked this question on #haskell-beginners #haskell-web IRC channels, no feedback so far.

Thanks!

Upvotes: 3

Views: 1041

Answers (1)

ja.
ja.

Reputation: 4249

Yes, persistent does support Oracle. https://github.com/gbwey/persistent-odbc

Upvotes: 0

Related Questions