Skip to content

Releases: EFTEC/PdoOne

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()

4.7.1

07 Jun 14:58
Compare
Choose a tag to compare
  • 4.7.1 2024-06-07
    • fixed a phpdoc in PdoOneQuery::where()

4.7

07 Jun 14:07
Compare
Choose a tag to compare
4.7
  • 4.7 2024-06-07
    • Update phpdoc using markdown without "php" because PHPStorm is not compatible with it.

4.6.2

02 Mar 15:58
Compare
Choose a tag to compare
  • 4.6.2 2024-03-02
    • [fix]PdoOne::$cacheService is now mixed.

4.6.1

02 Mar 14:39
Compare
Choose a tag to compare
  • 4.6.1 2024-03-02
    • [fix]PdoOne::$instance is null by default (instead of undefined)
    • updated CliOne dependency.

4.6

02 Mar 13:08
Compare
Choose a tag to compare
4.6
  • 4.6 2024-03-02
    • Updating dependency to PHP 7.4. The extended support of PHP 7.2 ended 3 years ago.
    • Added more type hinting in the code.