Evgenii Goryaev

Results 10 comments of Evgenii Goryaev

Yes, php 8.x support is needed...

Not yet, I've only been playing with this orm for the first few days. I will look in the near future when I will do some aggregations for jsonb columns...

> Have you tried new Expression or Fragment syntax? It now supports optional parameters that make SQL composing for some dialects easier. @wolfy-j maybe you could help me build query...

When i switched driver to sqlite to take a look on the result sql in this case, i got expected error ``` SQLSTATE[HY000]: General error: 1 near "?": syntax error...

Hello! Yesterday, after some hours in the orm and the driver source code, i found that problem was in php-pdo extension. It was fixed in 7.4. https://bugs.php.net/bug.php?id=71885 https://wiki.php.net/rfc/pdo_escape_placeholders **"Question marks...

I well check how the question mark doubling works with ORM query builder.

@wolfy-j I checked escaping with doubling it - it work great with ORM too. My example is ```php $this->dbal->database('default') ->table('table') ->select('name') ->where(new Fragment(sprintf("field_name ?? '%s'", $textToFind))) ->fetchAll(); ``` Thanks for...

i had the same issue. using traefik with labels in docker-compose, in wireguard-ui service helps me.

I'm talking about something else. It would be clearer to say instead of this, where without reading the documentation, the difference is not understood: ```go goview.Render(w, http.StatusOK, "index", goview.M{}) goview.Render(w,...