Releases: EFTEC/PdoOne
Releases · EFTEC/PdoOne
4.13.2
4.13.1
4.13
4.12.1
4.12
4.10
4.9.2
4.9.1
- 4.9.1 2024-08-20
- [fix] fixed a bug with where, where the value is null.
- pre 4.9: $this->...->where('col',null); // select * from table where col=null (invalid query in some engines)
- 4.9.1: $this->...->where('col',null); // select * from table where col is null (valid)
- [fix] fixed a bug with where, where the value is null.