Including an external jar
in
Integration and Hardware
•
1 month ago
I am trying to call HSQLDB from a processing sketch. I dropped the jar onto the IDE and it was saved into a "code/"-directory inside my sketch directory.
Using java, I would write include statements, i.e.
include
org.hsqldb.*;
and put the .jar onto my classpath.
Processing however tells me "unexpected token org". If i use double quotes like so:
include
org.hsqldb.*;
...it tells me "unexpected token include".
This seems like a common problem, but I could not find help using google. Could you please help me?
1