How to write custom functions for in memory HSQL(如何为内存 HSQL 编写自定义函数)
问题描述
我想在 HSQL 中编写一个简单的函数,以便向后兼容 DB2 函数.从理论上讲,我应该能够在 java 中编写一个自定义函数并将其挂接到 HSQL 中.有没有这方面的指导/文档?
I want to write a simple function in HSQL so that it is backwards compatible with DB2 functions. In theory I should be able to write a custom function in java and hook it into HSQL. Is there any direction/documentation on just that?
推荐答案
HSQLDB 指南中记录了用户定义的函数.有关用 Java 编写的函数,请参阅本节.
User defined functions are documented in the HSQLDB Guide. See this section for functions written in Java.
http://hsqldb.org/doc/2.0/guide/sqlroutines-chapt.html#src_jrt_routines
您还可以用 SQL 编写函数,这在指南的同一章中有记录.
You can also write your functions in SQL, which is documented in the same chapter of the Guide.
这篇关于如何为内存 HSQL 编写自定义函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何为内存 HSQL 编写自定义函数
基础教程推荐
- Java:带有char数组的println给出乱码 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 降序排序:Java Map 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01