如何关闭H2DB中的链接表?

发布于 2025-01-18 05:43:59 字数 111 浏览 2 评论 0原文

是否有可以关闭表链接的语法?换句话说,创建链接的表LocalTableTobe(className,url,url,用户名,密码,remotetablesource)的对立面是什么?

Is there a syntax to close a table link? In other words, what is the opposite of create linked table LocalTableToBe( className, url, userName, password, RemoteTableSource )?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

樱桃奶球 2025-01-25 05:43:59

您只能使用常规drop table命令删除这些表链接:

DROP TABLE LocalTableToBe;

此命令删除指定的链接,另一个数据库中的实际表不受IT的影响。

You can only drop these table links with the regular DROP TABLE command:

DROP TABLE LocalTableToBe;

This command drops the specified link, the actual table in another database isn't affected by it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文