@@ -410,7 +410,7 @@ using comma delimited ``explode()`` or ``null`` if no data is present.
...
@@ -410,7 +410,7 @@ using comma delimited ``explode()`` or ``null`` if no data is present.
the database as the ``explode()`` deserialization technique used
the database as the ``explode()`` deserialization technique used
by this type converts every single array item to ``string``.
by this type converts every single array item to ``string``.
This basically means that every array item other than ``string``
This basically means that every array item other than ``string``
will loose its type awareness.
will lose its type awareness.
json
json
^^^^
^^^^
...
@@ -927,7 +927,7 @@ Now we implement our ``Doctrine\DBAL\Types\Type`` instance:
...
@@ -927,7 +927,7 @@ Now we implement our ``Doctrine\DBAL\Types\Type`` instance:
}
}
}
}
The job of Doctrine-DBAL is to transform your type into SQL declaration. You can modify the SQL declaration Doctrine will produce. At first, you must to enable this feature by overriding the canRequireSQLConversion method:
The job of Doctrine-DBAL is to transform your type into an SQL declaration. You can modify the SQL declaration Doctrine will produce. At first, to enable this feature, you must override the canRequireSQLConversion method:
::
::
...
@@ -962,7 +962,7 @@ hook it into the database platform:
...
@@ -962,7 +962,7 @@ hook it into the database platform: