I've never set a password for Microsoft SQL server and when I log in, I log in with localhost, I just write . and it connects me. Now I am building an application in java and I have to connect to my database but since I've never set out a password, I am stuck
dataSource.setUrl("jdbc:mysql://localhost:3306/mpp");
dataSource.setUsername("root");
dataSource.setPassword(" _____ ");
What do I write as password?