Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在应用程序 jar 文件中嵌入一个 HSQLDB 数据库。我正在使用文本表。我知道我可以使用jdbc:hsqldb:res:协议连接到数据库以连接到 jar 文件中的数据库。但是如何在.script文件中指定表的来源?
jdbc:hsqldb:res:
.script
SET TABLE PUBLIC.MYTABLE SOURCE '<what_path_do_I_specify_here>'
如果将文本源文件与 .script 文件放在同一目录中,则 SOURCE 路径就是文件名。例如,如果文本文件是tabledata.csv,则语句应该是
tabledata.csv
SET TABLE PUBLIC.MYTABLE SOURCE 'tabledata.csv'