winterland1989/mysql-haskell

guide have little bugs

Closed this issue · 2 comments

hello !
there is something wrong in the README.md
... s <- prepareStmt conn "SELECT * FROM some_table where person_age > ?" ... (defs, is) <- queryStmt s [MySQLInt32U 18] ...
shoulde be
... s <- prepareStmt conn "SELECT * FROM some_table where person_age > ?" ... (defs, is) <- queryStmt conn s [MySQLInt32U 18] ...

Ah, good catch.

Fixed.