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 { ...@@ -29,9 +29,9 @@ public class MysqlDAOFactory extends DAOFactory {
Connection conexion = null; Connection conexion = null;
if (base.equals("nuevo")) { if (base.equals("nuevo")) {
try { try {
String url = "jdbc:mysql://172.16.2.43:3306/nuevo"; String url = "jdbc:mysql://172.16.0.15:3306/nuevo";
String username = "billy"; String username = "eduardo";
String password = "billy"; String password = "mysql";
conexion = DriverManager.getConnection(url, username, password); 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