Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp
Hibernate version:
3.0
Name and version of the database you are using:
MySql4.0.15
while configuring hibernate if i give the below string
<property name="connection.url">jdbc:mysql://localhost/rlym?useUnicode=true&characterEncoding=UTF-8</property>
in hibernate.cfg.xml it is ok. I mean there is no problem with turkish chars. But if I configure hibernate in java like
cfg.setProperty("hibernate.connection.url", "jdbc:mysql://localhost/rlym?useUnicode=true&characterEncoding=UTF-8");
then i cannot save turkish chars(instead if turkish chars i see ???)
what is the problem?