Hi Pete,

> java -classpath
> .:org:lib/ant-1.8.2.jar:lib/jooq-3.0.0-RC1.jar:lib/jooq-codegen-3.0.0-RC1.jar:lib/jooq-console-3.0.0-RC1.jar:lib/jooq-meta-3.0.0-RC1.jar:lib/log4j-1.2.16.jar:lib/persistence-api-1.0.jar:lib/rsyntaxtextarea-2.0.2.jar:lib/slf4j-api-1.6.1.jar:lib/validation-api-1.1.0.Alpha1.jar
> -jar jooq-console-3.0.0-RC1.jar lucid 5665
>

That is an interesting declaration, I never tried mixing a "-jar" (which is
supposed to declare its classpath) and a "-classpath". Is that supposed to
work?

You could try something like:
java -classpath
.:org:lib/ant-1.8.2.jar:lib/jooq-3.0.0-RC1.jar:lib/jooq-codegen-3.0.0-RC1.jar:lib/jooq-console-3.0.0-RC1.jar:lib/jooq-meta-3.0.0-RC1.jar:lib/log4j-1.2.16.jar:lib/persistence-api-1.0.jar:lib/rsyntaxtextarea-2.0.2.jar:lib/slf4j-api-1.6.1.jar:lib/validation-api-1.1.0.Alpha1.jar:jooq-console-3.0.0-RC1.jar
org.jooq.debug.console.Console lucid 5665

If you get it to work, you will face one issue though: with 3.0 the code
needs to be adapted to work with multi threading and lazy queries (cf my
e-mail from a few minutes ago).

Hope this helps,
-Christopher

-- 
You received this message because you are subscribed to the Google Groups "jOOQ 
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to