Johannes Müller
Johannes Müller
@jhass What benefit would that provide over a URL parameter? It seems to only complicate things.
The ability to use cleartext auth has been added in https://github.com/will/crystal-pg/pull/220 So this issue can really be closed. There were multiple iterations of PRs and it wasn't clearly referenced to...
I would assume the linked PR description should answer that question: You have to add cleartext to the enabled auth methods in code and then it's valid to use in...
There's `Connection#on_notice` for receiving notices.
That's how I use it in specs to just print the notice to STDOUT: ```cr db.connection.on_notice do |notice| puts print "NOTICE from PG: " puts notice end ```
Yeah, I've encountered similar errors with postgres as well, but never did any deeper investigation. So maybe it's an issue in `crystal-pg`.
Reading values directly from result sets is a pretty low level interface. Specifying the type as returned from the database might just be the best solution. Btw: Casting values to...
This looks like #190 but that should be fixed with clear 0.9.0.
Thanks for suggesting this, however I'm not so sure this would be a valuable improvement as is. First of all, including files from different directories is not a big deal....
The default include path is `.`, but if all your includes are in the `includes` folder, you can just use that one. An example of using FileSystemLoader is in the...