Is it possible to connect to a MySQL database without specifying the username and password in Java code:
Connection con=DriverManager.getConnection("database url","username","password");
I want to be able to have my password in a private spot and call that password somehow in a safe manner. Any tips for this?