Hi all
Where in the JForum source code is mysql.properties (or any other db specific property file) read? I tried changing ConfigKeys.java and using my own
property reader to populate some constants, but they are still read from mysql.properties. I did the following,
public static final
String DATABASE_CONNECTION_HOST = properties.getDbAddress();
where properties is my own property loader class, this is though bypassed by JForum and instead the hostname is read via mysql.properties. I even tried hard coding the constant DATABASE_CONNECTION_HOST to "test" but it's still read through mysql.properties.
Thanks!
[originally posted on jforum.net by bubblare]