I have a few columns in my database schema that have bit data types and am having problems with Doctrine2 mapping it. I keep getting:
Unknown database type bit requested, Doctrine\DBAL\Platforms\MySqlPlatform may not support it.
Is there any work around? I was thinking of just changing the data type to boolean and just use true and false statements but that would mean changing the schema on a large scale which I dont have time for.
Use mapping_types in the config.yml
doctrine:
dbal:
driver:%% database_driver
host:%% database_host
Port:%% database_port
dbname:% database_name%
user:%% database_user
password:%% database_password
charset: UTF8
mapping_types:
bit: boolean
In case you are using BIT
column to store a boolean
, you do this:
// get currently used platform
$dbPlatform = $em->getConnection()->getDatabasePlatform();
// interpret BIT as boolean
$dbPlatform->registerDoctrineTypeMapping('bit', 'boolean');
Now every time you map a property to bit column, doctrine 2 will interpret its value as a boolean.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With