public MysqlSession() {
super();
//TODO implement some functionality to read from configuration file
try {
PropertieReader reader = new PropertieReader();
this.username = reader.getPropertieData().get("username");
this.password = reader.getPropertieData().get("password");
this.url = reader.getPropertieData().get("url");
Class.forName("com.mysql.jdbc.Driver");
connect = DriverManager.getConnection(url, username, password);
setConnect(connect);