ResultSet rs=s.executeQuery("select * from teacher"); //查詢語句
創(chuàng)新互聯建站是專業(yè)的宜興網站建設公司,宜興接單;提供網站制作、做網站,網頁設計,網站設計,建網站,PHP網站建設等專業(yè)做網站服務;采用PHP框架,可快速的進行宜興網站開發(fā)網頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網站,專業(yè)的做網站團隊,希望更多企業(yè)前來合作!
s.executeUpdate("update into teacher set ....."); //插入,更新 ,刪除語句
/**
*插入,更新 ,刪除
*主要就是SQL語句不同
*/
增刪改查都有鏈接網頁鏈接
粘貼著查詢的:
package cn.web.jdbc;
import java.sql.*;
public class UserLogin {
public static void main(String[] args) {
? //? 加載驅動
? try {
? ? ? Class.forName("com.mysql.jdbc.Driver");
? ? ? // 獲取連接
? ? ? String url = "jdbc:mysql://localhost:3306/usejdbc?useUnicode=truecharacterEncoding=UTF-8useSSL=false";
? ? ? String user = "root";
? ? ? String mysqlPassword = "123456";
? ? ? //模擬前臺傳入的用戶名和密碼
? ? ? String InputUsername = "老八";
? ? ? String InputPassword = "123456";
? ? ? try {
? ? ? ? ? //? 連接對象輸入三個參數
? ? ? ? ? Connection connection = DriverManager.getConnection(url, user, mysqlPassword);
? ? ? ? ? System.out.println(connection);
? ? ? ? ? //定義sql語句
//? ? ? ? ? ? ? ? 查詢
? ? ? ? ? String sql1 = "select * from student where username='" + InputUsername + "' and password='" + InputPassword + "'";
? ? ? ? ? System.out.println(sql1);
? ? ? ? ? Statement statement = connection.createStatement();
? ? ? ? ? ResultSet resultSet = statement.executeQuery(sql1);
? ? ? ? ? System.out.println(resultSet);
? ? ? ? ? if (resultSet.next()) {
? ? ? ? ? ? ? System.out.println("登錄成功");
? ? ? ? ? } else {
? ? ? ? ? ? ? System.out.println("登錄失敗");
? ? ? ? ? }
//? ? ? ? ? ? ? ? 釋放資源
? ? ? ? ? statement.close();
? ? ? ? ? connection.close();
resultSet.close();
? ? ? } catch (SQLException e) {
? ? ? ? ? e.printStackTrace();
? ? ? }
? } catch (ClassNotFoundException e) {
? ? ? e.printStackTrace();
? }
}
}
對數據庫進行增刪改查?
以下是 sql server 2013+java.實現的是對MSC對象的增刪改查.
需要下載連接驅動程序:com.microsoft.sqlserver.jdbc.SQLServerDriver
網上搜一下就行
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
class MSC
{
public String MscID;
public String MscName;
public String MscCompany;
public float MscLongitude;
public float MscLatitude;
public float MscAltitude;
public MSC(String MscID, String MscName, String MscCompany,
float MscLongitude, float MscLatitude,float MscAltitude){
this.MscID = MscID;
this.MscName = MscName;
this.MscCompany = MscCompany;
this.MscLongitude =MscLongitude;
this.MscLatitude = MscLatitude;
this.MscAltitude = MscAltitude;
}
}
public class sqlserverjdbc {
public Connection getConnection(){
String driverName = "com.microsoft.sqlserver.jdbc.SQLServerDriver"; //加載JDBC驅動
String dbURL = "jdbc:sqlserver://localhost:1433; DatabaseName=gsm"; //連接服務器和數據庫sample
String userName = "sa"; //默認用戶名
String userPwd = "123"; //密碼
Connection dbConn = null;
try {
Class.forName(driverName);
dbConn =DriverManager.getConnection(dbURL, userName, userPwd);
} catch (Exception e) {
e.printStackTrace();
}
return dbConn;
}
public void printUserInfo(){
Connection con = getConnection();
Statement sta = null;
ResultSet rs = null;
System.out.println("打印表格MSC信息");
try {
sta = con.createStatement();
rs = sta.executeQuery("select * from MSC信息");
System.out.println("MscID\tMscName\tMscCompany\tMscLongitude\tMscLatitude\tMscAltitude");
while(rs.next()){
System.out.println(rs.getString("MscID")+"\t"+
rs.getString("MscName")+"\t"+
rs.getString("MscCompany")+"\t"+
rs.getFloat("MscLongitude")+"\t"+
rs.getFloat("MscLatitude")+"\t"+
rs.getFloat("MscAltitude"));
}
con.close();
sta.close();
rs.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println("打印完成\n");
}
public void delete(String MscID){
Connection con = getConnection();
String sql = "delete from MSC信息 where MscID = " + MscID;
PreparedStatement pst;
System.out.println("刪除表格MSC信息中 ID = "+MscID+"的記錄");
try {
pst = con.prepareStatement(sql);
pst.execute();
pst.close();
con.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
System.out.println("記錄刪除失?。。。?);
}
System.out.println("記錄刪除成功?。?!\n");
}
public void insert(MSC msc){
Connection con = getConnection();
String sql = "insert into MSC信息 values(?,?,?,?,?,?)";
PreparedStatement pst;
System.out.println("插入一條記錄");
try {
pst = con.prepareStatement(sql);
pst.setString(1, msc.MscID);
pst.setString(2, msc.MscName);
pst.setString(3, msc.MscCompany);
pst.setFloat(4, msc.MscLongitude);
pst.setFloat(5, msc.MscLatitude);
pst.setFloat(6, msc.MscAltitude);
pst.execute();
pst.close();
con.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
System.out.println("插入失?。。?!");
}
System.out.println("插入成功?。。n");
}
//更新MscID的MscName
public void updateMscName(String MscID, String MscName){
Connection con = getConnection();
String sql = "update MSC信息 set MscName = ? where MscID = ?";
PreparedStatement pst;
System.out.println("修改一條記錄");
try {
pst = con.prepareStatement(sql);
pst.setString(1, MscName);
pst.setString(2, MscID);
pst.execute();
pst.close();
con.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
System.out.println("修改失?。。?!");
}
System.out.println("修改成功!?。n");
}
public static void main(String args[]){
sqlserverjdbc sql = new sqlserverjdbc();
sql.printUserInfo();
sql.delete("1111");
sql.printUserInfo();
sql.updateMscName("5215", "聯想");
sql.printUserInfo();
sql.insert(new MSC("1111", "中興" ," 中興", (float)12.2, (float)3.4,(float)45.5));
sql.printUserInfo();
}
}
首先你得確定你的數據庫連接是通過什么形式連接的,hibernate還是原生態(tài)的jdbc 還是spring;
如果是只有hibernate,那么你得通過加載配置文件得到sessionFactory,然后得到session
如果spring,那么同樣也需要注入sessionfactory到你的dao
如果是jdbc方式,那么你就按照原生態(tài)jdbc寫法
總之,在你構造DAO時,得有數據源。這樣才能操縱你的數據庫
如果搞懂了這些問題,那么你的第一個,第三個問題就迎刃而解了。至于第二問題,我沒明白你什么意思!
網站題目:java增刪查改源代碼 java增刪改查接口怎么寫
文章轉載:http://www.rwnh.cn/article10/ddoeogo.html
成都網站建設公司_創(chuàng)新互聯,為您提供品牌網站制作、虛擬主機、建站公司、外貿建站、做網站、移動網站建設
聲明:本網站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯