Current File : //opt/RZphp74/includes/data/MDB2_Driver_ibase/package_ibase.xml
<?xml version="1.0" encoding="UTF-8"?>
<package packagerversion="1.5.3" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd">
 <name>MDB2_Driver_ibase</name>
 <channel>pear.php.net</channel>
 <summary>ibase MDB2 driver</summary>
 <description>This is the Interbase/Firebird MDB2 driver.</description>
 <lead>
  <name>Lorenzo Alberton</name>
  <user>quipo</user>
  <email>l.alberton@quipo.it</email>
  <active>yes</active>
 </lead>
 <lead>
  <name>Lukas Kahwe Smith</name>
  <user>lsmith</user>
  <email>smith@pooteeweet.org</email>
  <active>no</active>
 </lead>
 <date>2007-05-03</date>
 <time>20:54:10</time>
 <version>
  <release>1.4.1</release>
  <api>1.4.1</api>
 </version>
 <stability>
  <release>stable</release>
  <api>stable</api>
 </stability>
 <license>BSD License</license>
 <notes>- return length as &quot;precision,scale&quot; for NUMERIC and DECIMAL fields in mapNativeDatatype()
- in getTableIndexDefinition() and getTableConstraintDefinition() in the Reverse
  module, also return the field position in the index/constraint
- fixed failed connection when DSN is passed as an uppercase string (db file
  extension appended twice)
- fixed array key case issue with resultset in getTableIndexDefinition() in the
  Reverse module</notes>
 <contents>
  <dir baseinstalldir="/" name="/">
   <dir name="MDB2">
    <dir name="Driver">
     <dir name="Datatype">
      <file name="ibase.php" role="php">
       <tasks:replace from="@package_version@" to="version" type="package-info" />
      </file>
     </dir> <!-- /MDB2/Driver/Datatype -->
     <dir name="Function">
      <file name="ibase.php" role="php">
       <tasks:replace from="@package_version@" to="version" type="package-info" />
      </file>
     </dir> <!-- /MDB2/Driver/Function -->
     <dir name="Manager">
      <file name="ibase.php" role="php">
       <tasks:replace from="@package_version@" to="version" type="package-info" />
      </file>
     </dir> <!-- /MDB2/Driver/Manager -->
     <dir name="Native">
      <file name="ibase.php" role="php">
       <tasks:replace from="@package_version@" to="version" type="package-info" />
      </file>
     </dir> <!-- /MDB2/Driver/Native -->
     <dir name="Reverse">
      <file name="ibase.php" role="php">
       <tasks:replace from="@package_version@" to="version" type="package-info" />
      </file>
     </dir> <!-- /MDB2/Driver/Reverse -->
     <file name="ibase.php" role="php">
      <tasks:replace from="@package_version@" to="version" type="package-info" />
     </file>
    </dir> <!-- /MDB2/Driver -->
   </dir> <!-- /MDB2 -->
   <dir name="tests">
    <file name="MDB2_nonstandard_ibase.php" role="test" />
   </dir> <!-- /tests -->
   <file name="package_ibase.xml" role="data" />
  </dir> <!-- / -->
 </contents>
 <dependencies>
  <required>
   <php>
    <min>5.0.4</min>
   </php>
   <pearinstaller>
    <min>1.4.0b1</min>
   </pearinstaller>
   <package>
    <name>MDB2</name>
    <channel>pear.php.net</channel>
    <min>2.4.1</min>
   </package>
   <extension>
    <name>interbase</name>
   </extension>
  </required>
 </dependencies>
 <phprelease />
 <changelog>
  <release>
   <version>
    <release>1.4.1</release>
    <api>1.4.1</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2007-05-03</date>
   <license>BSD License</license>
   <notes>- return length as &quot;precision,scale&quot; for NUMERIC and DECIMAL fields in mapNativeDatatype()
- in getTableIndexDefinition() and getTableConstraintDefinition() in the Reverse
  module, also return the field position in the index/constraint
- fixed failed connection when DSN is passed as an uppercase string (db file
  extension appended twice)
- fixed array key case issue with resultset in getTableIndexDefinition() in the
  Reverse module</notes>
  </release>
  <release>
   <version>
    <release>1.4.0</release>
    <api>1.4.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2007-03-13</date>
   <license>BSD License</license>
   <notes>- propagate errors in getTableFieldDefinition() in the Reverse module
- fixed getTriggerDefinition() in the Reverse module [experimental]
- fixed listTableTriggers() in the Manager module
- added support for the -902 (feature is not supported) error code
  (thanks to Adam Harvey)
- fixed bug #9943: MDB2_Driver_ibase install failing because wrong
  extension name (ibase instead of interbase)
- implemented a fallback mechanism within getTableIndexDefinition() and
  getTableConstraintDefinition() in the Reverse module to ignore the &apos;idxname_format&apos;
  option and use the index name as provided in case of failure before returning
  an error
- added a &apos;nativetype_map_callback&apos; option to map native data declarations back to
  custom data types (thanks to Andrew Hill).
- listFunctions() in the Manager module now lists UDFs and stored procedures
- phpdoc fixes</notes>
  </release>
  <release>
   <version>
    <release>1.3.0</release>
    <api>2.3.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2006-11-03</date>
   <license>BSD License</license>
   <notes>- added charset and collation support to field declaration
- fixed bug #9024: typo in currID() error checking
- added lastInsertID() method (reads global current value instead of connection level)
- fixed inheritance structure of convertResult()
- added support for new &apos;disable_iso_date&apos; date DSN option (Request #8739)
- removed spurious 4th parameter of getDeclaration()
- fix typos in error handling in a few places (bug #9024)
- added support for getting the table name in tableInfo()
- migrated to package.xml version 2</notes>
  </release>
  <release>
   <version>
    <release>1.2.1</release>
    <api>1.2.1</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2006-08-29</date>
   <license uri="http://www.example.com">BSD License</license>
   <notes>- flip positions property array in prepared statement objects to make it
  possible to optionally use the same named placeholder in multiple places
  inside a single prepared statement
- do not list empty contraints and indexes
- added support for &apos;primary&apos; option in createTable()
- added missing &apos;mdb2type&apos; to getTableFieldDefinition()
- do not set a default if type is a LOB (Request #8074)
- fixed handling return values when disable_query is set in _doQuery() and _execute()
- increased MDB2 dependency too 2.2.1</notes>
  </release>
  <release>
   <version>
    <release>1.2.0</release>
    <api>1.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2006-07-25</date>
   <license uri="http://www.example.com">BSD License</license>
   <notes>- added ability to escape wildcard characters in escape() and quote()
- added setTransactionIsolation()
- added savepoint support to beginTransaction(), commit() and rollback()
- added debug() call at the end of a query/prepare/execute calling (Request #7933)
- added context array parameter to debug() and make use of it whereever sensible
- added optional method name parameter to raiseError() and use whereever possible
- added ability to escape wildcard characters in escape() and quote()
- added debug() call at the end of a query/prepare/execute calling (Request #7933)
- added &apos;nativetype&apos; output to tableInfo() and getTableFieldDefinition()
- added &apos;mdb2type&apos; output to getTableFieldDefinition()
- reworked tableInfo() to use a common implementation based on getTableFieldDefinition()
  when a table name is passed (Bug #8124)
- fixed incorrect regex in mapNativeDatatype() (Bug #8256) (thx ioz at ionosfera dot com)
- use old dsn when rolling back open transactions in disconnect()</notes>
  </release>
  <release>
   <version>
    <release>1.1.0</release>
    <api>1.1.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2006-06-15</date>
   <license uri="http://www.example.com">BSD License</license>
   <notes>- added &quot;emulate_prepared&quot; option to force prepared statement emulation
- tweaked handling of free() for prepared statements
- return error if a prepared statement is attempted to be freed twice
- added setCharset()
- use setCharset() in connect()/_doConnect()
- generalized quoteIdentifier() with a property
- cosmetic performance tweak in getTableFieldDefinition()
- switched most array_key_exists() calls to !empty() to improve readability and performance
- fixed a few edge cases and potential warnings
- added ability to rewrite queries for query(), exec() and prepare() using a debug handler callback
- check if result/connection has not yet been freed/dicsonnected before
  attempting to free a result set(Bug #7790)
- fixed control flow in MDB2_Driver_Datatype_ibase::mapNativeDatatype()
  for &apos;numeric&apos; or &apos;decimal&apos; types</notes>
  </release>
  <release>
   <version>
    <release>1.0.2</release>
    <api>1.0.2</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2006-05-14</date>
   <license uri="http://www.example.com">BSD License</license>
   <notes>- implemented listTableTriggers(), listTableViews() and listFunctions()
  in the Manager module
- implemented getTriggerDefinition() in the Reverse module
- explicitly set is_manip parameter to false for transaction debug calls
- pass parameter array as debug() all with scope &quot;parameters&quot; in every execute()
  call (bug #4119)
- typo fixes in phpdoc (thx Stoyan)
- added support for fixed and variable types for &apos;text&apos; in declarations,
  as well as in reverse engineering (Request #1523)
- made _doQuery() return a reference
- added userinfo&apos;s to all raiseError calls that previously had none
- added &apos;prepared_statements&apos; supported meta data setting
- typo fix ressource/resource in LOB array
- added missing unset() to _destroyLOB()
- fixed _destroyLOB() API to match other private LOB methods
- fixed phpdoc comments of all private LOB methods
- added missing supported parameter to prepare() signature
- fix default field value in getTableFieldDefinition() [Reverse module]</notes>
  </release>
  <release>
   <version>
    <release>1.0.1</release>
    <api>1.0.1</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2006-04-16</date>
   <license uri="http://www.example.com">BSD License</license>
   <notes>- discard all constraints in MDB2_Driver_Reverse::getTableIndexDefinition(),
  leave them to MDB2_Driver_Reverse::getTableConstraintDefinition().
- return the constraint type in MDB2_Driver_Reverse::getTableConstraintDefinition().
- aligned _modifyQuery() signature and phpdoc
- added &apos;result_introspection&apos; supported metadata support
- added server_version option
- some clean ups with determining if limit_queries needs to be emulated or not
- honor check_option parameter in quoteIdentifier()
- properly quote table names in tableInfo() (related to bug #6573)
- use connected_server_info in getServerVersion() as a cache cache
- use parent::disconnect() in disconnect()
- set error code in all raiseError() calls
- don&apos;t return views in listTables()
- fixed query in listViews()
- protect against sql injection in the reverse and manager module</notes>
  </release>
  <release>
   <version>
    <release>1.0.0</release>
    <api>1.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2006-02-09</date>
   <license uri="http://www.example.com">BSD License</license>
   <notes>- handle null as resource when disable_query option is enabled in result object

open todo items:
- handle autoincremement fields in alterTable()</notes>
  </release>
  <release>
   <version>
    <release>0.2.2</release>
    <api>0.2.2</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2006-02-05</date>
   <license uri="http://www.example.com">BSD License</license>
   <notes>- native DECIMAL datatype is now used instead of converting it to a string
- added support for length in decimal columns
- removed ugly hack for quote parameter in quote() since it was insufficient
  (escaping also needs to be prevented)
- added support for out of order parameter binding in prepared queries
- reset row_limit and row_offset after calling prepare() just like we do for query() and exec()
- cosmetic fix (removed &quot;row_&quot; prefix from &quot;row_limit&quot; and &quot;row_offset&quot;)
- now using SMALLINT by default instead of CHAR(1) for the boolean datatype (BC BREAK!)
- check if a constraint name is given in createConstraint()
- added private _silentCommit() method to avoid uncommitted queries preventing
  further queries to succeed (@see bug #6494)
- improved parsing in getServerInfo() (bug #6550)

open todo items:
- handle autoincremement fields in alterTable()</notes>
  </release>
  <release>
   <version>
    <release>0.2.1</release>
    <api>0.2.1</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2006-01-14</date>
   <license uri="http://www.example.com">BSD License</license>
   <notes>- removed unnecessary if statement in getTableFieldDefinition()
- no need to register a shutdown function since te ibase driver is php5 only
  and therefore always uses the destructor
- fixed typo in _execute() that would lead to using the wrong types inside the result object
- use proper error code in alterTable()
- explicitly pass if the module is phptype specific in all loadModule calls (bug #6226)
- added error handling in prepare()
- fixed signature of quoteIdentifier() to make second param optional
- req #6464: add the extension only if neither &apos;.gdb&apos; nor &apos;.fdb&apos; is given in the
  database name, for compatibility with PEAR::DB DNS (Mark Wiesemann)
- fixed bug #6465: possible mismatch in MDB2_Reverse_ibase due to parentheses
  in the returned datatype (Mark Wiesemann)
- fixed bug #6468: possible NOTICE in Driver/Datatype/ibase.php (Mark Wiesemann)
- fixed bug #6475: listTableIndexes() should only list indices, not constraints,
  and listTableConstraints() should return the user-defined names when available
- _fixIndexName() now just attempts to remove possible formatting
- renamed _isSequenceName() to _fixSequenceName()
- _fixSequenceName() now just attempts to remove possible formatting, and only
  returns a boolean if no formatting was applied when the new &quot;check&quot; parameter is set to true

open todo items:
- handle autoincremement fields in alterTable()</notes>
  </release>
  <release>
   <version>
    <release>0.2.0</release>
    <api>0.2.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2005-12-22</date>
   <license uri="http://www.example.com">BSD License</license>
   <notes>- fixed _dropAutoincrement()
- use _dropAutoincrement() in dropTable()
- fixed mapNativeDatatype()
- implemented getTableFieldDefinition() and getTableIndexDefinition() in the Reverse module
- implemented listUsers() in the Manager module
- unified case fixing in the list*() methods
- use custom implementation of getConnection() to access connection property
- split index and constraint handling
- return &quot;0&quot; as default value for integer NOT NULL fields with no default value
- quoteIdentifier() is just returning an uppercase string, since quoted
  identifiers in ibase do more harm than good
- refactored get*Declaration() methods to use getTypeDeclaration()
- set in_transaction to false on disconnect
- fixed type changing in alterTable()
- added new Function modules to handle difference in SQL functions
- autoincrement emulation works correctly
- pass the correct connection resource to ibase_blob_import()
- force rollback() with open transactions on disconnect
- escape floats to make sure they do not contain evil characters (bug #5608)
- in listSequences(), skip system generators
- split off manipulation queries into exec() method from the query() method *BC BREAK*
- only if result_types is set to false in prepare() method the query will be
  handled as a DML statement *BC BREAK*
- added ability to determine unsigned in mapNativeDatatype()
  (only really implemented in the mysql(i) drivers) (bug #6054)
- use MDB2_ERROR_NOT_FOUND in getTableConstraintDefinition() and getTableIndexDefinition() (bug #6055)
- added getServerVersion()
- unified array structure in mapNativeDatatype() *BC BREAK*
- added &apos;mdbtype&apos; to tableInfo() output that is generated from mapNativeDatatype()
- changed &apos;len&apos; to &apos;length&apos; in tableInfo() output *BC BREAK*

open todo items:
- handle autoincremement fields in alterTable()</notes>
  </release>
  <release>
   <version>
    <release>0.1.2</release>
    <api>0.1.2</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2005-10-10</date>
   <license uri="http://www.example.com">BSD License</license>
   <notes>Warning: this release features numerous BC breaks!

There have been considerable improvements to the datatype, manager and reverse
modules. Furthermore preliminary support for auto increment and primary keys
has been added. Please note that making a field auto increment implies a single
column primary key on this field.

- added support for auto increment and primary key in schema.
- alterTable now needs the full definition to work (use getTableFieldDefinition
 from Reverse module if you do not have a definition at hand) this eliminates the need
 of the declaration part in the alterTable array.
- fix PHP4.4 breakage
- fixed several incorrect raiseError() calls in manager module
- use !empty() instead of isset() in fetchRow to determine if result cols were bound or result types were set
- expect keys in type arrays the same way as they are passed for the values in execute() and bindParamArray()
- add s pattern modifier to preg_replace() call for parameter searches in prepare() (bug #5362)
- moved all private fetch mode fix methods into _fixResultArrayValues() for performance reasons
- renamed MDB2_PORTABILITY_LOWERCASE to MDB2_PORTABILITY_FIX_CASE and use &apos;field_case&apos; option to determine if to upper- or lowercase (CASE_LOWER/CASE_UPPER)
- use array_key_exists() instead of isset() where possible
- changed structure of field add/remove/change in alterTable() to match MDB2_Schema
- createIndex(): index_sorting is not a feature in the supported array, but is supported by interbase
- return 0 for manipulation queries when disable_query is enabled
- tweaked field changing in alterTable()
- getTypeDeclaration() in the datatype module is now a public method
- fixed alterTable() signature
- fixed listTableFields()
- added listTableIndexes()
- added listTables()

open todo items:
- code to be able to list primary contraints inside listTableIndexes()/dropIndex()
- handle autoincremement fields in alterTable() and dropTable()</notes>
  </release>
  <release>
   <version>
    <release>0.1.1</release>
    <api>0.1.1</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2005-06-08</date>
   <license uri="http://www.example.com">BSD License</license>
   <notes>- fixed LOB management and package dependencies
- fully tested</notes>
  </release>
  <release>
   <version>
    <release>0.1.0</release>
    <api>0.1.0</api>
   </version>
   <stability>
    <release>alpha</release>
    <api>alpha</api>
   </stability>
   <date>2005-06-08</date>
   <license uri="http://www.example.com">BSD License</license>
   <notes>first unbundled release from MDB2 core

- cosmetic fixes to _getDatabaseFile()
- removed redundant code from datatype module
- dont just check for isset() for boolean values in order to support
  setting them false as well (bug #4373)
- ensure SQL injection protection in all _quote() methods (was missing in
  some decimal, float, time, date and timestamp implementations)
- use new quote() parameter
- renamed execute() to _execute() since common provides some common
  functionality via execute()
- fixed decimal result conversion in datatype module
- typo fixes in result class
- support numeric and string keys in types array for prepared queries
- Warning: this release is untested</notes>
  </release>
 </changelog>
</package>