import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.Statement;
public class JdbcTest {
public static void main(String[] args) throws Exception {
// 1. Register the driver
Class.forName("");
String url = "jdbc:mysql://localhost:3306/test";
String user = "root";
String password = "root";
//2. Get the connection object
Connection con = DriverManager.getConnection(url, user, password);
//3 Create statement object
Statement sta = con.createStatement();
//4.Execute sql
String sql = "select * from user where id = 3";
//5. Get the result set
ResultSet rs = sta.executeQuery(sql);
while (rs.next()) {
System.out.println(rs.getString("id"));
System.out.println(rs.getString("name"));
System.out.println(rs.getString("password"));
}
// Close the connection and release the resources
rs.close();
sta.close();
con.close();
}
}