Skip to content

Commit

Permalink
Update jdbcConnection.java
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonma1127 authored Jun 10, 2021
1 parent 3ee1125 commit cf85b57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LibraryManageSystem/src/development/jdbcConnection.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public static Connection dataBaseConnection() {
Connection myConnection = null;
String url = "jdbc:mysql://localhost:3306/librarymanagesystemdb";
String dbUser = "root";
String daPassword = "ma861127";
String daPassword = "1234";
try {
//Get a connection to DB
myConnection = DriverManager.getConnection(url, dbUser, daPassword);
Expand Down

0 comments on commit cf85b57

Please sign in to comment.