public class JdbcTest {

public static void main(String[] args) {

//数据库连接
Connection connection = null;
//预编译的Statement,使用预编译的Statement提高数据库性能
PreparedStatement preparedStatement = null;
//结果 集
ResultSet resultSet = null;

try {
//加载数据库驱动
Class.forName("com.mysql.jdbc.Driver");

//通过驱动管理类获取数据库链接
connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/mybatis?characterEncoding=utf-8", "root", "root");
//定义sql语句 ?表示占位符
String sql = "select * from user where username = ?";
//获取预处理statement
preparedStatement = connection.prepareStatement(sql);
//设置参数,第一个参数为sql语句中参数的序号(从1开始),第二个参数为设置的参数值
preparedStatement.setString(1, "王五");
//向数据库发出sql执行查询,查询出结果集
resultSet = preparedStatement.executeQuery();
//遍历查询结果集
while(resultSet.next()){
System.out.println(resultSet.getString("id")+" "+resultSet.getString("username"));
}
} catch (Exception e) {
e.printStackTrace();
}finally{
//释放资源
if(resultSet!=null){
try {
resultSet.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
if(preparedStatement!=null){
try {
preparedStatement.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
if(connection!=null){
try {
connection.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}

}

}
}

最新文章

  1. NoSql系列目录
  2. Objective-C语法之KVO使用
  3. SublimeText配置NodeJS代码提示
  4. 【Junit】JUnit-4.12使用报java.lang.NoClassDefFoundError: org/hamcrest/SelfDescribing错误
  5. 在DNS管理器——用局域网IP指定你所起的域名名称
  6. 所有语言的Awesome
  7. 浅谈C++中指针和引用的区别者之间的区别和用法(转)
  8. java的LinkedList的用法
  9. CDialog上使用CToolBar+CReBar
  10. file-loader 使用心得
  11. [Python Study Notes]CS架构远程访问获取信息--Client端v2.0
  12. Serpent.AI – 游戏代理框架(Python)
  13. 判断点在不在多边形范围内c#
  14. 构建RN或Weex项目时,使用Android Studio常遇到的问题
  15. tomcat和iis共用80端口的简明手册
  16. [ZJOI2012]波浪
  17. Java分割ID和姓名(String不能当输出参数)
  18. Hibernate之关联关系映射(一对多和多对一映射,多对多映射)
  19. 微信公众号支付(JSAPI)对接备忘
  20. win10如何一键开启关闭windows Defender(亲测有效)

热门文章

  1. SSM项目思路整合NEW2
  2. 自动弹出pickerview
  3. Tomcat类加载
  4. 基于OpenCV做“三维重建”(1)--找到并绘制棋盘
  5. Mac提醒休息软件Stretchly(很好用)
  6. Git设置文件或目录忽略跟踪的三种方式
  7. 我的第一篇博客。(JavaScript的声明和数据类型的一些笔记)
  8. [转载]去除文件中的^M
  9. VWmare设置挂载目录
  10. echarts 角度渐变环形图心得