Hallo zusammen,
ich habe eine kleine Frage. meine Code zum setzen der Properties sieht folgendermassen aus:
Code:
AnnotationConfiguration config = new AnnotationConfiguration();
config.setProperty("hibernate.connection.url", "jdbc:" + url);
config.setProperty("hibernate.connection.password", password);
config.setProperty("hibernate.dialect", 'org.hibernate.dialect.MySQLDialect');
config.setProperty("hibernate.connection.driver_class", 'com.mysql.jdbc.Driver');
config.setProperty("hibernate.show_sql, "true");
nun zeigt mir die Zeile
Code:
config.setProperty("hibernate.dialect", 'org.hibernate.dialect.MySQLDialect');
allerdings einen Fehler an:
Code:
Invalid character constant
woher kommt das? diese Zeile ist meiner Meinung nach vollkommen korrekt. Danke Sebastian