在哪里存储存储过程/触发器/java类?
我确实了解 H2 支持存储过程/触发器/使用 java 类来扩展功能。
但是,将这些类(.class 文件/.jar 文件)放在哪里?
如果我们必须将其放入文件系统中,那么在没有该类的情况下移动数据库文件将使存储过程/触发器/等无用。这是真的吗?
TIA。
I do understand that H2 supports stored procedure/trigger/using java classes to extend 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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
存储过程可以存储为源代码;但这需要有可用的 Java 编译器。触发器目前不能;因此触发器类必须位于服务器类路径中。
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.