Where to store stored procedure/trigger/java classes?
I do understand that H2 supports stored procedure/trigger/using java classes to ex开发者_高级运维tend the functionality.
But, where to put those classes (.class files/.jar files)?
If we have to put it in file system, then moving the database file without that classes, will make the stored procedure/trigger/etc useless. is it true?
TIA.
Stored procedures can be stored as source code; however this requires that a Java compiler is available. Triggers can't currently; so trigger classes must be in the server class path.
精彩评论