Brian J. Cardiff
Brian J. Cardiff
I don't follow how that can help. Let me explain a concrete example, maybe I wasn't clear before. - I have a users table with a country field and other...
Using https://github.com/jpwhite3/northwind-SQLite3 as an example I can build this, Where `selected_employees` is defined as ``` select EmployeeID, LastName, FirstName, Title, strftime('%Y', BirthDate) as YOB, City from Employees where '$country' =...
I think in this case we are discussing a warning / output in the doc generator tool. And not in the compiler itself. Something like: > hey! you might want...
Regarding HTTP (Client/Server) we wanted a way to decouple the protocol implementation from the socket tls wrapper. That will allow simple http over unix socket and other use cases where...
I think this rule should be moved to monolith to avoid elm-review runtime dependency
The protocol documentation can be found at https://dev.mysql.com/doc/dev/mysql-server/latest/page_caching_sha2_authentication_exchanges.html
I don't think that dropping the current authentication method is a good call. First it would be disruptive when upgrading an application, and second, I am not sure there is...
👏 I'm not sure how you are going to send a PR if you are not working from a fork. But let's not make that a stopper. Feel free to...
Adding support to just caching_sha2_password seems fine. If you are not familiar with Docker and GitHub actions tweaking those to add CI for the additions can happen later, by someone...
In your apps `shard.yml` or `shard.override.yml` you should have ```yaml dependencies: mysql: path: /path/to/your/crystal-mysql ``` After that you need to do `shards install`, that should leave a symlink in your...