Remove platform-specific portability mode constants

parent a2fcaeef
# Upgrade to 3.0 # Upgrade to 3.0
## Removed `Portability\Connection::PORTABILITY_{PLATFORM}` constants`
The platform-specific portability constants were internal implementation details which are longer relevant.
## BC BREAK changes in fetching statement results ## BC BREAK changes in fetching statement results
1. The `Statement` interface no longer extends `ResultStatement`. 1. The `Statement` interface no longer extends `ResultStatement`.
......
...@@ -25,19 +25,6 @@ class Connection extends \Doctrine\DBAL\Connection ...@@ -25,19 +25,6 @@ class Connection extends \Doctrine\DBAL\Connection
public const PORTABILITY_EMPTY_TO_NULL = 4; public const PORTABILITY_EMPTY_TO_NULL = 4;
public const PORTABILITY_FIX_CASE = 8; public const PORTABILITY_FIX_CASE = 8;
/**#@+
*
* @deprecated Will be removed as internal implementation details.
*/
public const PORTABILITY_DB2 = 13;
public const PORTABILITY_ORACLE = 9;
public const PORTABILITY_POSTGRESQL = 13;
public const PORTABILITY_SQLITE = 13;
public const PORTABILITY_OTHERVENDORS = 12;
public const PORTABILITY_SQLANYWHERE = 13;
public const PORTABILITY_SQLSRV = 13;
/**#@-*/
/** @var Converter */ /** @var Converter */
private $converter; private $converter;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment