Martin Bacovsky
Martin Bacovsky
When I wanted to colorize some values, I used the following formatter ``` ruby class ColorFormatter def initialize(color) @color = color end def format(data) HighLine.color(data.to_s, @color) end end ``` The...
Hello, Since SQLAlchemy 1.4.5 it is required from third party dialects to set whether they comply with statement cache with `supports_statement_cache` attribute. More details in the [docs](https://docs.sqlalchemy.org/en/20/core/connections.html#caching-for-third-party-dialects). If the attribute...