Hi all<br><br>Just a quick note. I&#39;ve removed a couple of hard-coded MySQL parameters I&#39;ve found in the code. This happens every so often, specially for newcomers. <br><br>So as a reminder, why we don&#39;t want hard-coded MySQL parameters in the code? first because they contain security related information (servers, passwords and so on), second because hard-coding is bad! it makes things not portable and since now we are kind of public we really need to take care of this.<br>
<br>The solution for the MySQL connection is simply to use the constructor with no parameters:<br><br>MySQLConnection conn = new MySQLConnection();<br><br>that will read the .my.cnf config file from the user&#39;s home directory. Anyone using mysql should have one of those already properly set up. If anything change in the connection parameters you only need to edit the .my.cnf file and all is done.<br>
<br>Hope that helps<br><br>Jose<br><br><br>