public final static String DRIVER_CLASS = "com.microsoft.sqlserver.jdbc.SQLServerDriver";
金堂縣網(wǎng)站建設(shè)公司成都創(chuàng)新互聯(lián)公司,金堂縣網(wǎng)站設(shè)計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為金堂縣上千多家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)營銷網(wǎng)站建設(shè)要多少錢,請找那個售后服務(wù)好的金堂縣做網(wǎng)站的公司定做!
public final static String JDBC_URL = "jdbc:sqlserver://localhost:1433;databaseName=XXXXX";
public final static String USER_NAME = "XXXX";
public final static String USER_PWD = "XXXXXXX";
protected Connection conn;
protected PreparedStatement pstmt;
protected ResultSet rs;
protected Connection getConn() {
Connection conn = null;
try {
Class.forName(DRIVER_CLASS);
conn = DriverManager.getConnection(JDBC_URL, USER_NAME, USER_PWD);
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}
return conn;
}
protected void closeAll(ResultSet rs, PreparedStatement pstmt, Connection conn) {
if (rs != null) {
try {
rs.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
if (pstmt != null) {
try {
pstmt.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
if (conn != null) {
try {
conn.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
查:select * from XXX
增:insert into XXX value(X,X,X,X)
刪:delete from XXX
改:update XXX set XXX=?,XXX=? where XXX=?
public int addNews(NewsInfo news) {
int result = 0;
try {
conn = getConn();
pstmt = conn.prepareStatement(“增加的SQL語句”);
pstmt.setString(1, news.getNews_title());
pstmt.setString(2, news.getNews_Info());
pstmt.setString(3, news.getNews_creator());
result = pstmt.executeUpdate();
} catch (SQLException e) {
System.out.println("D?è?êy?Y꧰ü£????ì2é2??è£?");
e.printStackTrace();
} finally {
closeAll(rs, pstmt, conn);
}
return result;
}
就給你這么多提示吧。
增刪改查都有鏈接網(wǎng)頁鏈接
粘貼著查詢的:
package cn.web.jdbc;
import java.sql.*;
public class UserLogin {
public static void main(String[] args) {
? //? 加載驅(qū)動
? 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 {
? ? ? ? ? //? 連接對象輸入三個參數(shù)
? ? ? ? ? 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();
? }
}
}
1、首先在電腦上啟動數(shù)據(jù)庫 ,在數(shù)據(jù)庫中創(chuàng)建表,下面給出具體的SQL語句。
2、然后打開eclipse 創(chuàng)建新項目 JDBCTest,需要導(dǎo)入相關(guān)的jar包并構(gòu)建路徑,如圖。
3、接著創(chuàng)建entity實體層如圖對應(yīng)表中的數(shù)據(jù)。
4、創(chuàng)建數(shù)據(jù)連接層conn 用于MySQL數(shù)據(jù)庫的連接代碼如圖 如圖。
5、創(chuàng)建dao層持久層,在里面編寫數(shù)據(jù)庫表的增刪改查的具體操作。
6、最后編寫測試類 Test代碼如圖,就完成了。
首先你得確定你的數(shù)據(jù)庫連接是通過什么形式連接的,hibernate還是原生態(tài)的jdbc 還是spring;
如果是只有hibernate,那么你得通過加載配置文件得到sessionFactory,然后得到session
如果spring,那么同樣也需要注入sessionfactory到你的dao
如果是jdbc方式,那么你就按照原生態(tài)jdbc寫法
總之,在你構(gòu)造DAO時,得有數(shù)據(jù)源。這樣才能操縱你的數(shù)據(jù)庫
如果搞懂了這些問題,那么你的第一個,第三個問題就迎刃而解了。至于第二問題,我沒明白你什么意思!
原文鏈接隨便找的還行網(wǎng)頁鏈接
右鍵點擊項目名依次點擊new–Directory 創(chuàng)建文件夾lib
2.把mysql-connector-java-5.1.48-bin.jar包粘貼到lib目錄中
3.把數(shù)據(jù)庫連接jar包導(dǎo)入到項目中
JDBC步驟:
加載數(shù)據(jù)庫的驅(qū)動,它是java和數(shù)據(jù)庫之間的橋梁
2.獲取Connection,java和數(shù)據(jù)庫的一次連接
3.創(chuàng)建Statement對象,由Connection產(chǎn)生,執(zhí)行sql語句
4.如果要接收返回值,創(chuàng)建ResultSet對象,保存Statement執(zhí)行后所查到的結(jié)果
增刪改代碼:
package cn.web.jdbc;
import java.sql.*;
public class executeUpdate {
public static void main(String[] args) {
//? 加載驅(qū)動
try {
Class.forName("com.mysql.jdbc.Driver");
// 獲取連接
String url = "jdbc:mysql://localhost:3306/usejdbc?useUnicode=truecharacterEncoding=UTF-8useSSL=false";
String user = "root";
String password = "123456";
try {
//? 連接對象輸入三個參數(shù)
Connection connection = DriverManager.getConnection(url, user, password);
System.out.println(connection);
//定義sql語句
// 增
String sql1 = "insert into student(username,password) values ('諸葛亮','111111')";
// 刪
String sql2 = "delete from student where username ='諸葛亮'";
// 改
String sql3 = "update student set? username='老八' where id = 1 ";
Statement statement = connection.createStatement();
//? ? ? ? ? ? ? ? 修改這里的sql即可
int count = statement.executeUpdate(sql1);
System.out.println(count);
//? ?----------------------------------------------------------------
//? ? ? ? ? ? ? ? 釋放資源
statement.close();
connection.close();
resultSet.close();
} catch (SQLException e) {
e.printStackTrace();
}
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
}
}
//操作acess的
package cn.zhtech;
import java.sql.*;
import java.io.*;
public class DBManager {
/**
* @param args
*/
public static void main(String[] args) {
// TODO 自動生成方法存根
String strPath="";//當(dāng)前程序根路徑
try{
File f=new File(".");
strPath=f.getCanonicalPath();
}catch(IOException e){
System.out.println(e.toString());
}
//access文件路徑
String url="jdbc:odbc:Driver={MicroSoft Access Driver (*.mdb)};DBQ="+strPath+"\\data\\aa.mdb";
String username="";
String password="";
Connection con;
Statement stml;
ResultSet res;
try{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");//加載驅(qū)動
con=DriverManager.getConnection(url, username, password);//獲取連接
stml=con.createStatement();//建立statement
res=stml.executeQuery("select * from test");//查詢
while(res.next()){//顯示
System.out.println(res.getString("u_name")+"\n");
}
res.close();
stml.executeUpdate("insert into test(u_name) values('kkk')");//插入
stml.executeUpdate("delete from test where u_ID=3");//刪除
stml.executeUpdate("update test set u_name='mengkaide' where u_ID=4");//修改
stml.close();//關(guān)閉
con.close();
}catch(Exception e){
System.out.println(e.toString());
}
}
}
本文標題:java增刪改查的代碼 java增刪改查代碼思路
當(dāng)前路徑:http://vcdvsql.cn/article44/hioche.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供、App開發(fā)、移動網(wǎng)站建設(shè)、標簽優(yōu)化、網(wǎng)站維護、網(wǎng)站收錄
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)