我想在表格中添加一些俄语文本。如果我将使用 MySQL,但不是 Hibernate,它工作正常。这使我的文字看起来????
:
public void addHeadHunter(String city, Integer salary) {
Session session = null;
session = this.sessionFactory.getCurrentSession();
Query query = session
.createSQLQuery(
"INSERT INTO headhunter VALUES(NULL,:city,:salary,NULL)")
.setString("city", city).setInteger("salary", salary);
int updated = query.executeUpdate();
}
怎么了,同志们?