[#2176] Add hint in code generation, when an unsupported, old database

version is being used (e.g. MS SQL Server 2000)
This commit is contained in:
Lukas Eder 2013-02-09 15:39:15 +01:00
parent ee93716c63
commit b7b392d232

View File

@ -149,7 +149,9 @@ public abstract class AbstractDatabase implements Database {
}
if (schemata.isEmpty()) {
log.warn("No schemata were loaded", "Please check your connection settings and the case-sensitivity in your configured <inputSchema/> elements : " + inputSchemata);
log.warn(
"No schemata were loaded",
"Please check your connection settings, and whether your database (and your database version!) is really supported by jOOQ. Also, check the case-sensitivity in your configured <inputSchema/> elements : " + inputSchemata);
}
}