这是我的查询
SQL_QUERY="SELECT review.comment FROM ReviewDO review WHERE title='"+titleName+"'";
通过使用标题我试图得到它的描述。
例如,如果(不带撇tileName="Worth for money";
号)查询将是:
SQL_QUERY="SELECT review.comment FROM ReviewDO review WHERE title='Worth for money';
我得到了输出。
但是如果titleName="Can't beat the product";
(带撇号)
SQL_QUERY="SELECT review.comment FROM ReviewDO review WHERE title='Can't beat the product';
我得到org.hibernate.QueryException:expecting ''',found 'EOF'
有没有办法避免这个问题?