File: UPGRADING

package info (click to toggle)
php-horde-db 2.1.4-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 884 kB
  • ctags: 2,259
  • sloc: php: 8,675; xml: 804; sql: 22; sh: 11; makefile: 2
file content (32 lines) | stat: -rw-r--r-- 815 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
====================
 Upgrading Horde_Db
====================

:Contact: dev@lists.horde.org

.. contents:: Contents
.. section-numbering::


This lists the API changes between releases of the package.


Upgrading to 2.1.0
==================

  - Horde_Db_Adapter_Base

    - The execute(), select(), insert(), beginDbTransaction(),
      commitDbTransaction(), and rollbackDbTransaction() methods are abstract
      now.

    - The execute() method has been deprecated for external usage. Use the
      select() method instead or one of the other query methods.

    - The select() method always returns a Horde_Db_Adapter_Base_Result
      sub-class now.

    - The addIndex() method returns the used index name now.

    - The writeCache(), readCache(), insertBlob(), and column() methods have
      been added.