Hi,
Can someone please tell me why the registered column type for BIT for SQLServerDialect has not been set to bit.
This has caused me some problems because I am using the hibernate schema exporter which has been defaulting the type to tinyint. I am then using DBUnit to export some test data but it falls over because the column wont accept true or false.
Code:
public class MySQLServerDialect extends SQLServerDialect {
public MySQLServerDialect() {
registerColumnType( Types.BIT, "bit" );
}
}
Many thanks
David.