這篇文章帶給大家的內容是關於一文教你jsp如何連接MySQL資料庫?有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
如果是使用eclipse將該套件置於:
項目->WebContent->WEB-INF->lib下即可。
連接MySQL資料庫程式碼:
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> <%@ page import="java.sql.*" %> <body> <% String driver = "com.mysql.jdbc.Driver"; String url = "jdbc:mysql://127.0.0.1:3306/mydata"; String user = "root"; String password = "root"; try { Class.forName(driver); Connection conn = DriverManager.getConnection(url, user, password); Statement statement = conn.createStatement(); String sql = "select * from userInfo"; ResultSet rs = statement.executeQuery(sql); String name = null; String mima=null; while (rs.next()) { out.print("<br>用户名:"+rs.getString("username")+"密码:"+rs.getString("password")); } rs.close(); conn.close(); } catch (ClassNotFoundException e) { System.out.println("Sorry,can`t find the Driver!"); e.printStackTrace(); } catch (SQLException e) { e.printStackTrace(); } catch (Exception e) { e.printStackTrace(); } %> </body>
以上就是對一文教你jsp如何連接MySQL資料庫?的全部介紹,本文內容緊湊,希望大家可以有所收穫,更多JSP影片教學#請關注PHP中文網。
以上是一文教你jsp如何連接MySQL資料庫的詳細內容。更多資訊請關注PHP中文網其他相關文章!