一谣膳、添加jar包支持
? ? 方式1姐叁、maven添加? ? pom.xml中dependencies節(jié)點中添加dependency節(jié)點
? ??????通過官網(wǎng):http://mvnrepository.com/,或者:https://search.maven.org/(找到mysql數(shù)據(jù)庫,找到相應版本)
方式二:官網(wǎng)下載支持包
? ? ? ?添加到項目web-app下? ?web--INF下建立lib文件夾拧烦,放入lib,右擊add as library
二钝计、連接數(shù)據(jù)庫
? ? ? ? 1恋博、添加驅(qū)動
????????????????Class.forName("com.mysql.jdbc.Driver");
? ? ? ? 2、獲取連接線程
? ? ? ? ? ? ? ? DriverManager.getConnection("jdbc:mysql://localhost:3306/數(shù)據(jù)庫名"私恬,“root”债沮,“root”);
三本鸣、執(zhí)行查詢語句
1疫衩、獲取sql語句執(zhí)行對象線程statement
? ? ? ? Statement statement = connection.createStatement();? ??
2、執(zhí)行sql語句
? ? ? ? ResultSet rs = statement.executeQuery(sql語句);