什么是“目录”?在 Hibernate 带注释的类中使用?

发布于 2024-10-21 07:36:53 字数 104 浏览 2 评论 0原文

在 Java 类中,我看到了以下内容:

@Table(name="user" , catalog="users"

它的用途是什么?

In a Java class I have seen the following:

@Table(name="user" , catalog="users"

For what purpose it is used?

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

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

发布评论

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

评论(3

游魂 2024-10-28 07:36:53

来自 维基百科

数据库实例的数据库目录由元数据组成,其中定义了数据库对象的定义,例如基表、视图(虚拟表)、同义词、值范围、索引、用户和用户组。已存储。

另外,如果您的数据库是 MySQL,检查此项。

希望有帮助。

From Wikipedia:

The database catalog of a database instance consists of metadata in which definitions of database objects such as base tables, views (virtual tables), synonyms, value ranges, indexes, users, and user groups are stored.

Also, if your DB is MySQL, check this.

Hope that helps.

早乙女 2024-10-28 07:36:53

数据库有不同的方法(或相同方法的名称:)来组织其表。

有些数据库将所有表放在不同的“模式”中,有些数据库将所有表放在不同的“目录”中。您可以在属性中指定这一点。

Databases have different methods (or names for the same methods :) to organize its tables.

Some database place all tables in a different "schema", some in different "catalogs". In the attribute you can specify this.

沉鱼一梦 2024-10-28 07:36:53

这是来自 JPA @Table 注释。

That's from the JPA @Table annotation.

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