Skip to content

Releases: EFTEC/PdoOne

4.13.2

21 Feb 11:12
Compare
Choose a tag to compare
  • 4.13.2 2025-02-20
    • Later fix in the constructor.

4.13.1

21 Feb 02:23
Compare
Choose a tag to compare

Small fix constructor and prefix

4.13

20 Feb 23:41
Compare
Choose a tag to compare
  • 4.13 2025-02-02
    • Added prefix and postfix to the referential columns.

4.12.1

30 Dec 17:46
Compare
Choose a tag to compare

Solved problem #5

4.12

30 Dec 17:44
Compare
Choose a tag to compare
  • 4.12 2024-12-30
    • Compatibility with PHP 8.4
    • Some preliminary work with Sqlite and PostgreSQL

4.10

06 Sep 13:37
Compare
Choose a tag to compare
  • 4.10 2024-09-06
    • [upd] constructor now allows to use of an array

4.9.2

20 Aug 18:02
Compare
Choose a tag to compare
  • 4.9.2 2024-08-20
    • [fix] added more fixed to where(), now considering "is not null" where field<>:value (and :value is null)

4.9.1

20 Aug 16:47
Compare
Choose a tag to compare
  • 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)

4.9

02 Aug 15:38
Compare
Choose a tag to compare
4.9
  • 4.9 2024-08-02
    • [update] camelize update to consider "-" and "_" and not only "_"
    • [update] update dependencies.

4.8

06 Jul 20:45
Compare
Choose a tag to compare
4.8
  • 4.8 2024-07-06
    • [upd] added fetchMode for runRawQuery()
    • [new] added setFetchMode()
    • [new] PdoOneQuery added runRawQuery() which is a wrapper of PdoOne::runRawQuery()