Hi Maxim, No worries about the English :)
That explains the missing tables. Unfortunately, jOOQ does not support source code generation for MySQL 4.x. Is there a way you can get around that? What is your use case for using jOOQ with MySQL 4.x? Cheers Lukas 2011/6/7 Maxim Usenko <[email protected]>: > I'm using mysql 4.0.20. Maybe in this my problem? There is no > INFORMATION_SCHEMA and, how i understand, it's was added in mysql > 5.0+ ?! > > I hope you understand me and my english (i'm reader, not writer) =) > > On 7 июн, 16:08, Lukas Eder <[email protected]> wrote: >> When you use these connection properties in a standalone application: >> >> #Configure the database connection here >> jdbc.Driver=com.mysql.jdbc.Driver >> jdbc.URL=jdbc:mysql://192.168.4.10/ >> jdbc.Schema=db_name >> jdbc.User=db_user >> jdbc.Password=db_password >> >> will you then have access to the INFORMATION_SCHEMA tables? >> Also, have you tried using >> >> jdbc.URL=jdbc:mysql://192.168.4.10/[db_name] >> >> I'm not sure, jOOQ will work correctly if no database is specified in >> the connection URL
