JAVA-数据库之加载JDBC驱动程序

 

相关资料:
《21天学通Java Web开发》

 

加载JDBC驱动程序

 

JiaZaiDemo.jsp

 

 1  <%@ page language="java" contentType="text/html;charset=gb2312" %>
 2  <html>
 3  <head>
 4    <title>加载JDBC驱动程序</title>
 5  </head>
 6  <body>
 7    <%
 8      try{
 9        Class.forName("com.mysql.jdbc.Driver");//加载JDBC驱动程序
10        }catch (ClassNotFoundException e){
11          out.println("找不到驱动");//抛出异常时,提示信息
12          } 
13    %>
14  </body>
15  </html>
View Code

 

posted on 2017-10-15 14:10  疯狂delphi  阅读(856)  评论(0编辑  收藏  举报

导航