Tags give the ability to mark specific points in history as being important
  • v2.5.11   This release fixes a number of inconsistencies around prepared statements when `closeCursor()` is called, or when a prepared statement is re-used multiple times. Total issues resolved: **5** - [2487: Store results of subsequents statement executions same as of the first one](https://github.com/doctrine/dbal/pull/2487) - [2489: Rebind row values to the statement after freeing result](https://github.com/doctrine/dbal/pull/2489) - [2536: Bind result variables after each execution in order to prevent string truncation](https://github.com/doctrine/dbal/pull/2536) - [2546: Prepared statements become unusable after calling closeCursor() on IBM DB2, Oracle and MS SQL Server.](https://github.com/doctrine/dbal/pull/2546) - [2557: Inconsistent semantics of close cursor](https://github.com/doctrine/dbal/issues/2557)
  • v2.5.10   This release fixes: * some PHP 5.3 compatibility issues that caused the test suite to fail for the previous release * index renaming for indexes that had particular assigned options, and that were being added rather than renamed or recreated under a different name * `date` and `datetimetz` OracleDB type introspection: these two types were incorrectly recognized as `datetime` Total issues resolved: **4** - [2508: Renaming index does not rename the index, but creates new one](https://github.com/doctrine/dbal/issues/2508) - [2555: schema generation maps oracledb `DATE` fields to `datetime`](https://github.com/doctrine/dbal/issues/2555) - [2611: #2508 Pass through index options when renaming index on table](https://github.com/doctrine/dbal/pull/2611) - [2612: #2555 Fix `date` and `datetimetz` type mapping on Oracle](https://github.com/doctrine/dbal/pull/2612)
  • v2.5.9   This release fixes an issue with type information passed to `Connection#update()`, which was incorrectly handled if the updated columns and the identifier columns had equivalent keys. Also, the generated current date and time SQL expressions for SQL Server were fixed. Total issues resolved: **4** - [2511: DBAL Connection::update() - types list does not match the parameter list if fields are used in SET and WHERE clause](https://github.com/doctrine/dbal/issues/2511) - [2586: SQL_Server : issue on getCurrentDateSql()](https://github.com/doctrine/dbal/issues/2586) - [2608: [DBAL-2586\ Fix current date and time SQL generation on SQL Server](https://github.com/doctrine/dbal/pull/2608) - [2609: [DBAL-2511\ Fix type list extraction in connection update method](https://github.com/doctrine/dbal/pull/2609)
    0d2f8187 · Merge branch... ·
  • v2.5.8   This release fixes some issues around LIMIT/OFFSET handling in DB2, OracleDB, SQL Server: * Allowing LIMIT/OFFSET modification without LIMIT on OracleDB * Allowing LIMIT/OFFSET modification with OFFSET = 0 on DB2 * Avoiding an accidental infinite loop in LIMIT/OFFSET modification on SQL Server Total issues resolved: **4** - [2408: Hotfix 2313 infinite loop](https://github.com/doctrine/dbal/pull/2408) - [2463: IBM_DB2 platform doesn't handle offset without limit](https://github.com/doctrine/dbal/pull/2463) - [2509: Oracle platform ignores OFFSET in case if LIMIT is not specified](https://github.com/doctrine/dbal/pull/2509) - [2602: Backport #2408](https://github.com/doctrine/dbal/issues/2602)
  • v2.5.7   This release fixes some OracleDB and PostgreSQL specific issues. * Introspecting table columns on OracleDB when using a non-default schema caused SQL error ORA-01427 * SQL parameter expansion was broken when using the `ARRAY[]` expression on PostgreSQL Total issues resolved: **9** - [2496: Fix parameter list expansion inside PostgreSQL arrays](https://github.com/doctrine/dbal/pull/2496) - [2515: PHP Warning when listing table columns in Oracle](https://github.com/doctrine/dbal/issues/2515) - [2516: #2515 fix schema listing when having identical tables in databases](https://github.com/doctrine/dbal/pull/2516) - [2517: ORA-01427 when listing table columns](https://github.com/doctrine/dbal/issues/2517) - [2518: Fixed ORA-01427 when listing columns](https://github.com/doctrine/dbal/pull/2518) - [2522: OraclePlatform - ORA-01427: single-row subquery returns more than one row](https://github.com/doctrine/dbal/pull/2522) - [2549: Oracle column metadata import fix](https://github.com/doctrine/dbal/pull/2549) - [2584: Doctrine:Schema:Validate leeds to ORA-01427(single-row subquery returns more than one row)](https://github.com/doctrine/dbal/issues/2584) - [2585: OraclePlatform : Add an owner condition to the list table column comment subquery](https://github.com/doctrine/dbal/pull/2585)
  • v2.5.6   Total issues resolved: **1** - [2569: Allow doctrine/common 2.7](https://github.com/doctrine/dbal/pull/2569)
  • v2.5.5   Total issues resolved: **40** - [842: Fixed incorrect handling of single quotes in SQL-Strings](https://github.com/doctrine/dbal/pull/842) - [856: MySQL getListTableForeignKeysSQL: use current database if null passed](https://github.com/doctrine/dbal/pull/856) - [861: Check for foreign table name on removed tables foreign key](https://github.com/doctrine/dbal/pull/861) - [862: Quote table and constraint names in drop foreign key / drop constraint SQL](https://github.com/doctrine/dbal/pull/862) - [863: Strip leading slash of databasename from URL](https://github.com/doctrine/dbal/pull/863) - [925: Fixing the command when option is CURRENT_SCHEMA](https://github.com/doctrine/dbal/pull/925) - [1054: DBAL-1114: Problem with drop database on PostgreSQL](https://github.com/doctrine/dbal/issues/1054) - [1106: DBAL-1164: Creating SQLite Connections via a URL Does Not Work](https://github.com/doctrine/dbal/issues/1106) - [1151: DBAL-1205: getPlaceholderPositions finds placeholders which are actually no placeholder if string contains single quotes](https://github.com/doctrine/dbal/issues/1151) - [1183: DBAL-1234: Additional slash in dbname when providing settings as URL without scheme](https://github.com/doctrine/dbal/issues/1183) - [2182: DBAL-939: schema update doesnt detect boolean type correctly](https://github.com/doctrine/dbal/issues/2182) - [2261: OCI8 - bindValue overwrite previous values](https://github.com/doctrine/dbal/issues/2261) - [2262: Issue #2261 - OCI8 Driver PHP 7 - Fix bindValue overwriting other params. ](https://github.com/doctrine/dbal/pull/2262) - [2267: Pass "path" to pdo-sqlite drivers from DriverManager instead of "dbname"](https://github.com/doctrine/dbal/pull/2267) - [2270: SqlitePlatform does not escape table name on truncate](https://github.com/doctrine/dbal/issues/2270) - [2275: Quote reserved keywords in TRUNCATE TABLE SQL](https://github.com/doctrine/dbal/pull/2275) - [2277: [DBAL-939\ Fix reverse engineering boolean type columns on DB2](https://github.com/doctrine/dbal/pull/2277) - [2279: Stop using template1 as default database for postgres drivers](https://github.com/doctrine/dbal/pull/2279) - [2286: Fix list foreign keys SQL database parameter evaluation](https://github.com/doctrine/dbal/pull/2286) - [2287: Fix parsing schemeless connection URLs](https://github.com/doctrine/dbal/pull/2287) - [2288: Preserve quotation of old column name in ColumnDiff](https://github.com/doctrine/dbal/pull/2288) - [2291: The QueryBuilder::getSQLForSelect() always appends a FROM clause for select queries](https://github.com/doctrine/dbal/issues/2291) - [2292: Do not generate FROM clause in QueryBuilder if no tables specified](https://github.com/doctrine/dbal/pull/2292) - [2302: when use \Doctrine\DBAL\Schema\Comparator to compare two table schema, has a problem](https://github.com/doctrine/dbal/issues/2302) - [2303: Fix another primary key alteration with autoincrement column case on MySQL](https://github.com/doctrine/dbal/pull/2303) - [2310: [DB2\ Move row number to the end of the field list in query limit/offset modification](https://github.com/doctrine/dbal/pull/2310) - [2318: [Oracle\ Fix list table columns when using external or OS authentication with Oracle](https://github.com/doctrine/dbal/pull/2318) - [2384: Fluent methods in QueryBuilder are now documented as returning `$this`](https://github.com/doctrine/dbal/pull/2384) - [2386: Fix oci driver bindValue overwrite with php7](https://github.com/doctrine/dbal/pull/2386) - [2390: Catch Throwable in Connection::transactional()](https://github.com/doctrine/dbal/pull/2390) - [2403: fix grammar in DBALException messages](https://github.com/doctrine/dbal/pull/2403) - [2428: Modify Limit Query on SQLServer2012 with newline before `ORDER BY`](https://github.com/doctrine/dbal/pull/2428) - [2434: Keep references to bound parameter values in oci8 driver](https://github.com/doctrine/dbal/pull/2434) - [2436: MySqlPlatform::getListTableColumnsSQL() is not escaping names](https://github.com/doctrine/dbal/issues/2436) - [2440: No parameters passed to logger when executing statement using bindParam](https://github.com/doctrine/dbal/issues/2440) - [2442: Escape identifiers in metadata SQL properly when used as string literal](https://github.com/doctrine/dbal/pull/2442) - [2443: Track the Values & Types Passed to Statement::bindParam](https://github.com/doctrine/dbal/pull/2443) - [2484: Allow usage of symfony/console ^3.0 in dev dependencies](https://github.com/doctrine/dbal/pull/2484) - [2497: ResultStatement::fetch() returns null instead of false with mysqli](https://github.com/doctrine/dbal/issues/2497) - [2500: Making sure that fetch returns false if nothing is found](https://github.com/doctrine/dbal/pull/2500)
    9f8c05cd · Merge branch... ·
  • v2.4.5   Total issues resolved: **7** - [1069: DBAL-1128: [GH-782\ Fix: SQLite offset with no limit support](https://github.com/doctrine/dbal/issues/1069) - [1074: DBAL-1132: [GH-786\ Fix removing autoincrement column from a primary key](https://github.com/doctrine/dbal/issues/1074) - [1079: DBAL-1137: Infinite recursion on non-unique table/join alias in QueryBuilder](https://github.com/doctrine/dbal/issues/1079) - [1124: DBAL-1181: [GH-822\ Fix for bad profiling data, showing an indefinitely long query](https://github.com/doctrine/dbal/issues/1124) - [1129: DBAL-1186: [GH-826\ fix incorrect ordering of columns in clustered indexes on sql server](https://github.com/doctrine/dbal/issues/1129) - [1141: DBAL-1197: [GH-835\ backport bugfix to avoid fatal error in array_merge during generating the table creation SQL](https://github.com/doctrine/dbal/issues/1141) - [1162: DBAL-1215: [GH-844\ template1 as default database for PostgreSQL](https://github.com/doctrine/dbal/issues/1162)
    5a1f4bf3 · Release 2.4.5 ·
  • v2.5.4   Total issues resolved: **3** - [2249: Compatibility mis-match? PGSQL_ATTR_DISABLE_PREPARES in v2.5.2 (in a PHP 5.6.16 envt)](https://github.com/doctrine/dbal/issues/2249) - [2272: [DBAL-1779\ Fix string column type declarations with whitespace on SQLite](https://github.com/doctrine/dbal/pull/2272) - [2273: Fix usage of PDO::PGSQL_ATTR_DISABLE_PREPARES for edge case pdo_pgsql setups](https://github.com/doctrine/dbal/pull/2273)
    abbdfd1c · Release 2.5.4 ·
  • v2.5.3   Total issues resolved: **2** - [818: Rebuild SQLServerPlatform::doModifyLimitQuery again to use a CTE](https://github.com/doctrine/dbal/pull/818) - [2268: #2260 - loosening doctrine/common requirement: allowing 2.6.x](https://github.com/doctrine/dbal/pull/2268)
    2fbcea96 · Release 2.5.3 ·
  • v2.5.2   v2.5.2
    01dbcbc5 · Release 2.5.2 ·
  • v2.4.4   v2.4.4
    a370e5b9 · Release 2.4.4 ·
  • v2.5.1   v2.5.1
    628c2256 · Release 2.5.1 ·
  • v2.5.0   v2.5.0
    71140662 · Bump version to 2.5.1 ·
  • v2.4.3   [![Build Status](https://travis-ci.org/doctrine/dbal.svg?branch=v2.4.3)](https://travis-ci.org/doctrine/dbal) Total issues resolved: **1** - [DBAL-760 - Don't return warnings as errors in sqlsrv driver](http://www.doctrine-project.org/jira/browse/DBAL-760) [#490](https://github.com/doctrine/dbal/pull/490) - [DBAL-766 - PostgreSQL: Fix statement for getTableWhereClause method](http://www.doctrine-project.org/jira/browse/DBAL-766) [#492](https://github.com/doctrine/dbal/pull/492) - [DBAL-759 - Fix driver error while introspecting sequences in SQL Server 2012](http://www.doctrine-project.org/jira/browse/DBAL-759) [#489](https://github.com/doctrine/dbal/pull/489) - [DDC-2883 - DBAL-766 - PostgreSQL: Fix statement for getTableWhereClause method](http://www.doctrine-project.org/jira/browse/DBAL-766) [#492](https://github.com/doctrine/dbal/pull/492) - [DBAL-787 - Fix modifying limit/offset for statements with subqueries on SQL Server](http://www.doctrine-project.org/jira/browse/DBAL-787) [#512](https://github.com/doctrine/dbal/pull/512) - [DBAL-792 - Fix sqlite autoincrement detection](http://www.doctrine-project.org/jira/browse/DBAL-792) [#515](https://github.com/doctrine/dbal/pull/515) - [#625 - Fix pg boolean conversion](https://github.com/doctrine/dbal/pull/625) - [DBAL-950 - Backport #625 - pgsql boolean conversion](http://www.doctrine-project.org/jira/browse/DBAL-950) - [DBAL-951 - Remove duplicate suggest section in composer.json](http://www.doctrine-project.org/jira/browse/DBAL-951) [#641](https://github.com/doctrine/dbal/pull/641) - [DBAL-963 - Add close() method in MasterSlaveConnection.php](http://www.doctrine-project.org/jira/browse/DBAL-963) [#652](https://github.com/doctrine/dbal/pull/652) - [DBAL-976 - Fix evaluation of NOLOCK table hint on SQL Server](http://www.doctrine-project.org/jira/browse/DBAL-976) [#663](https://github.com/doctrine/dbal/pull/663) - [DBAL-1006 - DBAL-717 - DBAL-335 - Fix bug in MasterSlaveConnection with keepSlave option and switch back after transaction](http://www.doctrine-project.org/jira/browse/DBAL-976) [#690](https://github.com/doctrine/dbal/pull/690)
    0368bc03 · Release 2.4.3 ·
  • v2.3.5   v2.3.5
    d5067b0b · Release 2.3.5 ·
  • v2.5.0-RC2   v2.5.0-RC2
    f7dbc5df · Release 2.5.0-RC2 ·
  • v2.5.0-RC1   v2.5.0-RC1
    22069a07 · Release 2.5.0-RC1 ·
  • v2.5.0-BETA3   v2.5.0-BETA3
    812dd9da · Release 2.5.0 BETA3 ·
  • v2.4.2   v2.4.2
    fec965d3 · Release 2.4.2 ·