使用JDBC的基本步骤

在面试中面试官可能会问到,首先我们要记住JDBC的基本步骤应该先记得四个关键词:Driver、connection、statement、ResultSet。

所以使用sql访问数据库有五个基本步骤,

分别为:

1)加载数据库驱动程序    程序如下:Class.from("com.mysql.jdbc.driver");

2)建立数据库连接     程序如下:Connection connection =DriverMannger.getConnection("jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf8;");

3)创建语句              程序如下:Statement statement=connection.createStatement();

4)执行语句            程序如下:ResultSet resultSet=statement.executeQuery(sql);

5) 处理ResultSet   程序如下:while( resultSet.next() ) { }

你可能感兴趣的:(使用JDBC的基本步骤)