如何在 H2db 中关闭链接 table?

How to close linked table in H2db?

是否有关闭 table link 的语法?也就是说,create linked table LocalTableToBe( className, url, userName, password, RemoteTableSource )的反义词是什么?

您只能使用常规 DROP TABLE 命令删除这些 table link:

DROP TABLE LocalTableToBe;

此命令删除指定的 link,另一个数据库中的实际 table 不受其影响。