1
1
mirror of https://github.com/qfpl/applied-fp-course.git synced 2024-12-02 08:53:20 +03:00
applied-fp-course/level05/README.md
Sean Chalmers b69770bdbc Name changes to Applied name.
Wording and phrasing updates. Some functions changed around a bit to
be slightly less 'weird'.
2017-09-05 13:53:05 +10:00

694 B

Level 05

We need a place to store our Comments/Topics, so we're going to use the SQLite database. We've chosen SQLite because it takes the least amount of setup for the purposes of the course. There is an example module included for using PostgreSQL, however the course will focus on the SQLite implementation.

For reference, the packages we will use to talk to our database are:

Start in src/FirstApp/DB/Types.hs, before moving to src/FirstApp/DB.hs.

NB: The PostgreSQL example module is in src/FirstApp/DB/PostgreSQL.hs.