jdbc

1  创建驱动

Class.forName("com.mysql.jdbc.Driver");

2 连接数据库

 Connection    conne = DriverManager.getConnection(

"jdbc:mysql://localhost:3306/homework", "root", "123456");


3  通过Connection对象创建statement对象

Statement  stm = conn.createStatement(); 

4 执行SQL 语句

stm.executeQuery(sql)  executeQuery 查询    executeUpdate 增删改

5 ResultSet 是一个结果集  ,保存了SQL语句的查询结果, 要对她进行遍历

你可能感兴趣的:(jdbc)