Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using DbUnit in the latest version 2.4.8 and I get many warnings in my Unit tests with this message:

WARN : org.dbunit.dataset.AbstractTableMetaData - 
Potential problem found: The configured data type factory 
    'class org.dbunit.dataset.datatype.DefaultDataTypeFactory' 
     might cause problems with the current database 'MySQL' (e.g. some datatypes may 
     not be supported properly). In rare cases you might see this message because the 
     list of supported database products is incomplete (list=[derby]). If so please 
     request a java-class update via the forums.If you are using your own 
     IDataTypeFactory extending DefaultDataTypeFactory, ensure that you override 
     getValidDbProducts() to specify the supported database products.

So I thought I add this (I use a MySQL database):

protected void setUpDatabaseConfig(DatabaseConfig config) {
    config.setProperty(DatabaseConfig.PROPERTY_DATATYPE_FACTORY, new MySqlDataTypeFactory());
}

But this does not help to avoid these warnings. What's wrong here?

Thank you in advance & Best Regards Tim.

share|improve this question
Have you tried the "If so please request a java-class update via the forums" path? – Martijn Verburg Oct 15 '10 at 14:33
No, that is this one: MySqlDataTypeFactory. It should be okay. – Tim Oct 15 '10 at 14:38

3 Answers

I solved this with info from the dbunit faq. Just setting the data type factory property made the warning go away.

    Connection dbConn = template.getDataSource().getConnection();

    IDatabaseConnection connection = new DatabaseConnection(dbConn, "UTEST", false);

    DatabaseConfig dbConfig = connection.getConfig();

    // added this line to get rid of the warning
    dbConfig.setProperty(DatabaseConfig.PROPERTY_DATATYPE_FACTORY, new OracleDataTypeFactory());
share|improve this answer
spot on, thanks! – stantonk Jan 15 at 23:50
Got it! For Mysql database, just replace the new OracleDataTypeFactory() in last line by new MySqlDataTypeFactory(). – Takumar Mar 23 at 20:27

I was using JTDS driver and MS SQL 2008. In my DBUntiTest class override the following method. The waring message disappeared.

@Override
protected void setUpDatabaseConfig(DatabaseConfig config) {
    config.setProperty(DatabaseConfig.PROPERTY_DATATYPE_FACTORY, new MsSqlDataTypeFactory());
}
share|improve this answer
up vote -1 down vote accepted

I solved this problem by building all in another way. So I put all into the trash and do it from scratch and then I do not have this problem any more.

share|improve this answer
4  
Tim, can you help us out and explain how you built it another way? I'm having this same problem and would love to learn how you solved it. – Dave May 12 '11 at 13:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.