> For now, It's a great idea to use lowercase for the name of input schema.
Yes it's more correct anyway. According to the documentation, MySQL schema names (= database names) are case-sensitive on some operating systems. So on a unix-machine, GuestBook and guestbook are indeed two different databases: http://dev.mysql.com/doc/refman/5.6/en/identifier-case-sensitivity.html Note, the tutorial is consistent as far as case-sensitivity is concerned: http://www.jooq.org/tutorial.php > Btw, theĀ SchemaMapping is deprecated. > I seem to get a new homework to test this > http://www.jooq.org/manual/ADVANCED/SchemaMapping/ Yes, the new JAXB-annotated runtime configuration replaced the pre-existing SchemaMapping. SchemaMapping is still used under the hood, but will be removed from the public API eventually. Thanks for testing this Cheers Lukas
