Morris Brodersen

Results 55 comments of Morris Brodersen

hey, thanks for the PR! would you mind adding tests that display the functionality?

Shouldn't "_list" suffix or "list" (lower-case) work? SQL is case insensitive. @rubenvincenten that could work, however think this is a very niche edge case...

Hm no, you can always wrap with your own timing functions to measure execution time of method calls on LessQL objects

Everything is camelCase except for table names. SQL is case-insensitive and most schemas are snake_case. The table name in `$db->table_name()` is a shorthand for `$db->table( 'table_name' )` and directly represents...

Hey ilsenem, thanks for your kind words! Would you mind opening a separate issue describing how to reproduce the behavior you're experiencing with setRewrite? 🍻

In the future, you'll never want to use the wrapped PDO - the next version will hopefully have a much nicer, stateless API for _all_ SQL things.

I just pushed that after the request, it's only in "dev" and not in any release right now. Of course you can always use the PDO query method directly.

Hi Paul. Thanks a lot for reaching out, I really appreciate your words! Now for some anwers: I'm definitely maintaining v0.x as far as bugs are concerned, but I won't...

Thank you :) yeah, some sort of "type hinting" is currently missing. I'll put this on the list for v1, thanks again!

Currently, you can only use PDO directly as LessQL\Result only models these kind of queries: ``` SELECT {* | select_expr, ...} FROM table [WHERE condition [AND condition [...]]] [ORDER BY...