Jeremy Daly
Jeremy Daly
Hi @SebastianApel, Thanks for reporting this. If you are using AWS Lambda, there should only be one connection per invocation (i.e. concurrent user), so you should never get the race...
@rpelletierrefocus, you just need to place the update statement, e.g. `UPDATE Town_County = ?, Province_State = ?`. This is assuming that `fips` is your `PRIMARY KEY`.
Hi @christopherchubb. If I'm interpreting your question correctly, it seems like you may be able to use `IS_NULL` as a condition check to test your incoming value, or maybe just...
You can get the connection by calling `mysql.getClient()`. The `threadId` should be accessible from that.
Hi @dashmug, `changeUser` has not been implemented in the library as of yet, but if you need to access data on the same instance (and the user has access to...
I don't believe the `mysql` library returns the final escaped SQL except on an error. If you catch an error, `.sql` on the error object will contain the SQL statement...
Any additional help with TypeScript definitions would be greatly appreciated.
Currently no, but that would be an interesting use case.
Yes! There is another very good pattern here.
I think that's fine. It could be a separate pattern, but as long as the general concept is covered, it should be good.