So I added a org.jooq.debug.impl.Server instance to my program, and the items there in required (class names are incorrect in the documentation btw).
But when I try to run the Console I get an class not found error: 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 Exception in thread "AWT-EventQueue-0" java.lang.NoClassDefFoundError: org/fife/ui/rtextarea/RTextArea at org.jooq.debug.console.EditorsPane.addSQLEditorPane(EditorsPane.java:256) at org.jooq.debug.console.EditorsPane.<init>(EditorsPane.java:105) at org.jooq.debug.console.Console.addEditorTab(Console.java:319) at org.jooq.debug.console.Console.init(Console.java:252) at org.jooq.debug.console.Console.<init>(Console.java:106) at org.jooq.debug.console.Console$6.run(Console.java:345) at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:251) at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:701) at java.awt.EventQueue.access$000(EventQueue.java:102) at java.awt.EventQueue$3.run(EventQueue.java:662) at java.awt.EventQueue$3.run(EventQueue.java:660) at java.security.AccessController.doPrivileged(Native Method) at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76) at java.awt.EventQueue.dispatchEvent(EventQueue.java:671) at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:244) at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:163) at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:147) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:139) at java.awt.EventDispatchThread.run(EventDispatchThread.java:97) Caused by: java.lang.ClassNotFoundException: org.fife.ui.rtextarea.RTextArea at java.net.URLClassLoader$1.run(URLClassLoader.java:366) at java.net.URLClassLoader$1.run(URLClassLoader.java:355) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:354) at java.lang.ClassLoader.loadClass(ClassLoader.java:423) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308) at java.lang.ClassLoader.loadClass(ClassLoader.java:356) ... 20 more I've tried all the obvious things, the jar is in the class path, it does contain the class file RTextArea - I even unzipped it and tried that - Java just will not see this class! Any idea what I'm doing wrong? I'm using the jar provided. Pete -- 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.
