Hiberante属性类型列表,通过sql添加到表中

发布于 2024-09-07 18:45:51 字数 454 浏览 2 评论 0原文

我最近在一个类中添加了新属性,它的列表属性,并且我已经为该属性编写了 xml 映射,由于一些原因,我不打算删除数据库或使用 hibernate 配置文件中的创建选项来更新更改。我必须通过在数据库上执行 sql 查询来手动完成此操作。

xml 映射文件:

<list name="items" table="ITEM_ITEM_GROUP" lazy="false" cascade="save-update">
    <key column="ITEM_GROUP_ID"></key>
    <list-index column="IG_INDEX" />            
    <many-to-many column="ITEM_ID" class="Item" />
</list>

任何人都可以帮助我该怎么做吗?

I recently added new property in one class, its list property and I have written xml mapping for that property,due to few reasons I am not suppose to delete database or use create option in hibernate config file to update changes. I have to do it manual by executing sql queries on database.

xml mapping file:

<list name="items" table="ITEM_ITEM_GROUP" lazy="false" cascade="save-update">
    <key column="ITEM_GROUP_ID"></key>
    <list-index column="IG_INDEX" />            
    <many-to-many column="ITEM_ID" class="Item" />
</list>

can anyone please help how do i do it?

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

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

发布评论

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

评论(2

携余温的黄昏 2024-09-14 18:45:51

您不仅仅是添加一列,而是添加一个表。

最简单的方法是使用 SchemaExport 创建数据库架构的 SQL 脚本。然后您可以复制粘贴带有索引和所有内容的新表。

在这种情况下,您很可能不必更改现有表,只需添加新内容即可。

在java中,您可以直接从命令行调用SchemaExport。请查看此处之类的教程。

在 C# 中,您需要编写一个导出模式的实用程序,代码如下所示:

var schemaExport = new SchemaExport(configuration);
schemaExport                    
  .Execute(
    false,
    false,
    false,
    null,
    fileStream);

基本上是这样的(取决于您使用的 rdms)

create table ITEM_ITEM_GROUP(
  ITEM_GROUP_ID int not null,
  IG_INDEX int not null,
  ITEM_ID int,
  primary key (ITEM_GROUP_ID, IG_INDEX)
)

alter table ITEM_ITEM_GROUP
    add constraint FKXXXX
    foreign key (ITEM_GROUP_ID) 
    references YOUR_ENTITY

alter table ITEM_ITEM_GROUP
    add constraint FKXXXX
    foreign key (ITEM_ID) 
    references ITEM

我可能错过了一些东西。因此,最好让 Hibernate 创建架构并查看生成的 SQL。

You are not just adding a column, you are adding a table.

The easiest approach is to use SchemaExport to create an sql script of your database schema. Then you can copy-paste the new table with indexes and everything.

In this case, you most probably don't have to change an existing table, just add the new stuff.

In java, you can call SchemaExport directly from the command line. Take a look at a tutorial like this here.

In C# you need to write a utility which export the schema, code looks something like this:

var schemaExport = new SchemaExport(configuration);
schemaExport                    
  .Execute(
    false,
    false,
    false,
    null,
    fileStream);

It will basically be something like this (depending on your rdms you are using)

create table ITEM_ITEM_GROUP(
  ITEM_GROUP_ID int not null,
  IG_INDEX int not null,
  ITEM_ID int,
  primary key (ITEM_GROUP_ID, IG_INDEX)
)

alter table ITEM_ITEM_GROUP
    add constraint FKXXXX
    foreign key (ITEM_GROUP_ID) 
    references YOUR_ENTITY

alter table ITEM_ITEM_GROUP
    add constraint FKXXXX
    foreign key (ITEM_ID) 
    references ITEM

I probably missed something. So it's best you let Hibernate create the schema and look into the generated SQL.

蝶舞 2024-09-14 18:45:51

那么您只想将该列添加到表中吗?使用 ALTER TABLE 语句:

ALTER TABLE table_name
ADD column_name datatype

请参阅 http://w3schools.com/sql/ sql_alter.asp

So you just want to add that column to the table? Use the ALTER TABLE statement:

ALTER TABLE table_name
ADD column_name datatype

See http://w3schools.com/sql/sql_alter.asp

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