获取数据库的连接:
*方法:static Connection getConnection(String url,String user,String password)
*参数:
*url: 指定的连接路径
*语法:jdbc:mysql://ip地址(域名):端口号/数据库名称
*例子:jdbc:mysql://localhost:3306/db3;
*细节:如果连接是本机的mysql服务器,并且mysql服务默认端口是3306,则url可以简写为:
jdbc:mysql//
*user :用户名
*password;密码