4

ロシア語のテキストを表に追加したいと思います。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();
    }

同志、どうしたの?

4

1 に答える 1