英文:
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();
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论