Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
<%
try {
- String connectionURL = "jdbc:mysql://localhost/bdVols";
+ String connectionURL = "jdbc:mysql://localhost/MyBd";
Connection connection = null;
Class.forName("com.mysql.jdbc.Driver").newInstance();
- connection = DriverManager.getConnection(connectionURL, "fraggle", "$Love79!");
+ connection = DriverManager.getConnection(connectionURL, "MyBd", "MyBd");
if(!connection.isClosed())
out.println("Successfully connected to " + connectionURL + " MySQL server using TCP/IP");
connection.close();