Commit 6117cc87 by Billy Larru

[EDIT MysqlDAOFactory, apuntando a la base de datos real]

parent 2777b54d
......@@ -29,9 +29,9 @@ public class MysqlDAOFactory extends DAOFactory {
Connection conexion = null;
if (base.equals("nuevo")) {
try {
String url = "jdbc:mysql://172.16.2.43:3306/nuevo";
String username = "billy";
String password = "billy";
String url = "jdbc:mysql://172.16.0.15:3306/nuevo";
String username = "eduardo";
String password = "mysql";
conexion = DriverManager.getConnection(url, username, password);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment