保存枚举名称在本地查询中

huangapple go评论63阅读模式
英文:

Saving enum name in native query

问题

使用实体管理器是否可以保存枚举的名称,而不使用 name 方法?我需要这样做是因为有时我的枚举可能为 null,然后 name 方法将返回一个 nullpointer。现在我必须这样做:

entityManager.createNativeQuery(
    "INSERT INTO car(enum_column) " +
    "VALUES(:enumColumn)")
.unwrap(NativeQuery.class)
.setParameter("enumColumn", entity.getEnumColumn.name)
.executeUpdate();

我需要像这样做并设置枚举名称:

entityManager.createNativeQuery(
    "INSERT INTO car(enum_column) " +
    "VALUES(:enumColumn)")
.unwrap(NativeQuery.class)
.setParameter("enumColumn", entity.getEnumColumn)
.executeUpdate();

不幸的是,现在的结果是:\xaced00057e72002c636f6dffddffd...

英文:

Is it possible with the entity manager to save the name of the enum without using the name method? I need it because sometimes my enum will be null and then the name method would return a nullpointer. Now I have to do this:

entityManager.createNativeQuery(
                "INSERT INTO car(enum_column) " +
                        "VALUES(enumColumn)")
        .unwrap(NativeQuery.class)
        .setParameter("enumColumn", entity.getEnumColumn.name)
        .executeUpdate();

i need to do this something like this and set enum name:

entityManager.createNativeQuery(
                "INSERT INTO car(enum_column) " +
                        "VALUES(enumColumn)")
        .unwrap(NativeQuery.class)
        .setParameter("enumColumn", entity.getEnumColumn)
        .executeUpdate();

unfortunelly, now result is : \xaced00057e72002c636f6dffddffd...

答案1

得分: 1

以下是翻译好的部分:

entityManager.createNativeQuery(
    "INSERT INTO car(enum_column) " +
    "VALUES(:enumColumn)")
    .unwrap(NativeQuery.class)
    .setParameter("enumColumn", entity.getEnumColumn() == null ? null : entity.getEnumColumn().name())
    .executeUpdate();
英文:

The easiest one, still quite readable:

entityManager.createNativeQuery(
    "INSERT INTO car(enum_column) " +
    "VALUES(:enumColumn)")
    .unwrap(NativeQuery.class)
    .setParameter("enumColumn", entity.getEnumColumn() == null ? null : entity.getEnumColumn().name())
    .executeUpdate();

答案2

得分: 1

是的,可以在不使用name方法的情况下保存枚举的名称。您可以使用Enum.toString()方法。toString()方法返回枚举常量的字符串表示,即其名称。

entityManager.createNativeQuery(
    "INSERT INTO car(enum_column) " +
            "VALUES(:enumColumn)")
.unwrap(NativeQuery.class)
.setParameter("enumColumn", entity.getEnumColumn != null ? entity.getEnumColumn.toString() : null)
.executeUpdate();
英文:

Yes, it is possible to save the name of the enum without using the name method. You can use the Enum.toString() method instead. The toString() method returns the string representation of the enum constant, which is its name.

entityManager.createNativeQuery(
    "INSERT INTO car(enum_column) " +
            "VALUES(:enumColumn)")
.unwrap(NativeQuery.class)
.setParameter("enumColumn", entity.getEnumColumn != null ? entity.getEnumColumn.toString() : null)
.executeUpdate();

huangapple
  • 本文由 发表于 2023年6月27日 18:12:27
  • 转载请务必保留本文链接:https://go.coder-hub.com/76563829.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定