Leslie Software wrote: > Interesting. I though that was a strange error to be getting when running SQL. Does that mean that Derby is generating Java code from the SQL to do the actual work? >
Yes, you are correct. Derby generates a Java class file for most SQL statements, the exceptions being DDL statements like "CREATE TABLE". See the "Internals of Derby" presentation here: http://db.apache.org/derby/papers/MiscPresentations.html#Colorado+Software+Summit+2004 Dan.
