Matthew Peveler

Results 298 comments of Matthew Peveler

I'd be perfectly fine with having it be the library consumer who has to manually opt into using cleartext, and so they would have to deal with `LIBMYSQL_ENABLE_CLEARTEXT_PLUGIN` or whatever...

> end to end test covering happy and error path. This is probably the most complicated step. I haven't found an easy way to configure real mysql server with mysql_clear_password...

@silverbullettruck2001 I just installed the rc and I'm getting the right types for it. Looking at https://unpkg.com/browse/[email protected]/index.d.ts and that looks right as well. Are you pulling in a types file...

We're running into this same issue, and it looks like a PR was made that would perhaps fix this issue, but no response on maintainers on it. Is there anything...

To get this patch to work with the `execute` function with a `complete` callback, I needed to make the following additional changes: ```diff diff --git a/node_modules/snowflake-sdk/lib/connection/result/row_stream.js b/node_modules/snowflake-sdk/lib/connection/result/row_stream.js index a7f2f4a..a4d5d56 100644...

Agree where if the scope is limited to only ever being for the web client, it's probably not worth bothering as the amount of usage there is probably comically limited...

The value that's being shown is a naive string representation of a [`Buffer`](https://nodejs.org/api/buffer.html) object. If you were to do: ```node > a = Buffer.from([50, 48, 50, 52, 45, 49, 50,...

We don't currently test against mariadb, so we'd need to wire that up before we could have a good test for this. MySQL does happily allow `null` and `not null`...

Right now, the link to `cakephp/database` is purely for the [query builder](https://book.cakephp.org/phinx/0/en/migrations.html#using-the-query-builder), and isn't really a critical part of the rest of the project. I'm still of the opinion that...

To be clear, `cakephp/database` will always remain the principally "blessed" library for the query builder available to users, given this project's owernship by cakephp, and also its heavy coupling into...