X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=ROOT%2Fexo9%2FconnectJspMysql.jsp;h=5428f7a6845d7d044c70c2bc83fff843902a1805;hb=714e1b9156a383581be324ae0792e6e0767a7106;hp=8d0f0827184ff053a095bed1d35aee1dc9885837;hpb=8639833058a983de10b1571c8f99c8d01e793804;p=TD_webapps.git diff --git a/ROOT/exo9/connectJspMysql.jsp b/ROOT/exo9/connectJspMysql.jsp index 8d0f082..5428f7a 100644 --- a/ROOT/exo9/connectJspMysql.jsp +++ b/ROOT/exo9/connectJspMysql.jsp @@ -2,10 +2,10 @@ <% 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();