dwgebler
dwgebler
Doesn't seem like it should be too difficult to expose the connection to a request handler. In `StreamingServer`, we should be able to do ` $response = $callback($request, $conn); `...
Thanks @clue yes my interest in exposing the connection is to retrieve a client certificate at the HTTP layer, my particular use case being user level access control in a...
@REDAL in answer to your first question, yes the query builder has a count() method, e.g. `$numUsers = $users->where('active', '=', true)->count();` In regards to your second question, you can't use...
@REDAL there is an example in the advanced queries section of the documentation - if I understand correctly what you're trying to do, you want the `union()` and `intersect()` functions...
There isn't any concept of a "last ID" in DocLite since the ID can be any unique string value. If you want to know the ID of a newly saved...
> It has been removed as a fix: #50819 I have amended this branch to an alternative solution; we try to translate, but revert the translation if the result contains...
Thanks @rustatian this would be particularly useful for a) a service which may run on RR via either HTTP or HTTPS and you'd like to be able to know which...
As a quick and dirty draft, here are the changes I made in `roadrunner-http` (Go) and `roadrunner-http` (PHP) to get what I wanted: In HTTP `handler` `getReq`: ```go if r.TLS...
> Yeah, nice 😃 It should be in the separate middleware generally. I'm also not a big fan of the json'ing everything, but as the POC looks nice, thanks. >...
Hi @derrabus 1. Connection driver is PDO. Running the original query via PDO directly with parameters bound by name works fine. 2. It's actually not as simple as I thought,...