Steps to connect with Database
In this blog, we can directly connect with the database and perform the query execution
Steps:
Load the Driver:
Class.forName("com.mysql.jdbc.Driver")
Create a Connection:
Connection con = DriverManager.getConnection("jdbc:mysql://127.0.0.1:3306/...
javaspringboot.hashnode.dev1 min read