gpt4 book ai didi

java - hibernate "where"查询仅适用于 id 字段

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:13:11 29 4
gpt4 key购买 nike

我的 Hibernate 查询有问题,如下所示:

List persons = getList("FROM creator.models.Person p WHERE p.lastName="+userName);

(getList(String queryString) 方法只是使用 session 工厂执行查询。)

这是我的个人类(class):

@Entity
@Table(name="persons")
public class Person{
@Id
@GeneratedValue(strategy=GenerationType.AUTO)
@Column(name = "id")
private Long id;

@Column(name="first_name", nullable=false, updatable=true)
private String firstName;

@Column(name="last_name", nullable=false, updatable=true)
private String lastName;
/// etc

这是表格:

CREATE TABLE persons(
id INTEGER NOT NULL AUTO_INCREMENT,
first_name CHAR(50),
last_name CHAR(50),
abbreviation CHAR(4),

PRIMARY KEY (id)
);

搜索名为 TestName 的人时,我收到一条异常消息:

org.hibernate.exception.SQLGrammarException: Unknown column 'TestName' in 'where clause'
at org.hibernate.exception.internal.SQLExceptionTypeDelegate.convert(SQLExceptionTypeDelegate.java:82)
at org.hibernate.exception.internal.StandardSQLExceptionConverter.convert(StandardSQLExceptionConverter.java:49)
//etc

Hibernate 创建的查询如下所示:

INFO: HHH000397: Using ASTQueryTranslatorFactory
Hibernate: select person0_.id as id8_, person0_.abbreviation as abbrevia2_8_, person0_.first_name as first3_8_, person0_.last_name as last4_8_ from persons person0_ where person0_.last_name=TestName
Dec 10, 2012 5:14:26 PM org.hibernate.engine.jdbc.spi.SqlExceptionHelper logExceptions

顺便说一句,搜索 id (...WHERE p.id="3") 工作正常!

我希望有人知道出了什么问题,因为对我来说查询看起来是正确的,但我无法找出为什么 lastName 突然被视为列名。

最佳答案

您需要将用户名放在引号中:

"FROM creator.models.Person p WHERE p.lastName='"+userName+"'";

或者(更好)使用参数

关于java - hibernate "where"查询仅适用于 id 字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13804940/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com