Ondřej Sochůrek

Results 12 comments of Ondřej Sochůrek

I tried more testing and there is a bug, when you call on fluent `limit()` and `count()`. ``` $this->db->select('*') ->from('table') ->limit(1) ->count(); ``` **Got this error:** `Expected number, '7' given.`...

I already tried that (Conclusion no.3), The main problem is when i write this Fluent query: ``` $q = $this->db ->select("id, name ") ->from("table_name t"); ``` SQL is: `SELECT id,...

Thank you for quick response. **Code:** `$this->db->select(['id', 'name'])->from('table_name')->as('t');` **SQL:** `SELECT "id", "name" FROM "table_name" AS "t"` **Error:** `ORA-00907: missing right parenthesis` There cannot be `AS` for table alias at Oracle....

Thank you, i will try it. At this time i have own version of dibi with modification for Oracle. All identifiers are lower case. It seems to work for now....

Hello, any progress on this?

It would be greate for postgresql 15. There is a option now: UNIQUE NULLS NOT DISTINCT

I have same issue event on the latest version (6.10.4). Could this be finished please?