Kristof Bastiaensen
Kristof Bastiaensen
I have started a mysql backend at: https://github.com/kuribas/selda it implements all the features for the backend, but there are some issues to be solved (~~bug in mysql-haskell~~, conversion issues, etc..)
Sorry, it was a bug in my own code, when copy pasting your functions.
Could it be possible to do make a more expressive data type `ResultE`, then `Result` a type synonym: ```haskell data ResultE e a = Error e | Success a type...
@asheshambasta that's not possible with a monad instance. And the applicative `` should behave the same as `app`. However you can write your own combinator works the same as applicative,...
Or you could make a newtype `CollectErrors` which has only an applicative. Not sure that buys us much. We could also add an option to make the generic and template...
It would be nice to be able to use haddock documentation, or jump to the documentation. That would work on all compiler versions.
Isn't readline mimicking emacs? I can see some cirularity here...
Doable. See https://dev.mysql.com/doc/dev/mysql-server/latest/page_protocol_connection_phase.html You could take this python implementation as reference: https://github.com/PyMySQL/PyMySQL/blob/main/pymysql/connections.py