簡單的jdbc程式,實現簡單增刪查改

2021-09-24 19:26:27 字數 1923 閱讀 5878

完成後的**結構

一.使用jdbc連線資料庫

七個步驟:

1.獲取驅動

2.建立連線

3.編寫sql

4.獲取preparestatement

5.執行sql語句,並返回結果

6.處理結果集

7.關閉資源

public class dbiutil  catch (classnotfoundexception e) 

}public static connection getconn() throws exception

public static void closeconn(resultset rs,preparedstatement state,connection conn)throws exception

if(state!=null)

if(conn!=null)}}

二.設計user

簡單的id,password

public class user 

public void setid(int id)

public string getpassward()

public void setpassward(string passward)

public user(int id, string passward)

三.設計主頁面

public class tuser }}

}}private static void change()

else

system.out.println("更改使用者密碼"+student+"失敗!");

}private static void search()

private static void delete()

else

system.out.println("刪除使用者"+student+"失敗!");

}private static void add()

else

system.out.println("增加使用者"+student+"失敗!");}}

三.增刪查改的具體實現

public static listfindall()

} catch (exception e) finally catch (exception e)

}return users;

}public static boolean adduser(int student,string password) catch (exception e) finally catch (exception e)

}return s;

}public static boolean login(int id,string password)

} catch (exception e) finally catch (exception e)

}return false;

}public static boolean deleteuser(int student) catch (exception e) finally catch (exception e)

}return false;

}public static boolean changeuser(int student,string password) catch (exception e) finally catch (exception e)

}return false;

}

JAVA的JDBC封裝,簡單實現增刪查改

使用jdbc完成資料庫的操作需要寫很多的重複 寫起來也很麻煩。於是我將新增 刪除 修改 查詢的 都封裝了起來,包過了變數型別處理也直接進行了封裝。在使用時只需三四行 就能完成乙個操作。public class jdbcpz catch filenotfoundexception e catch io...

jdbc簡單增刪改查示例

檢視 string tablename 表名 string sql select from tablename 連線資料庫獲取connection 一般單獨寫在乙個工具類 connection conn jdbcmysql.getconnection preparedstatement stmt c...

JDBC的簡單理解

上面做完,如果都ok的話,就說明資料庫已經連線好了 接下來的步驟都是對資料庫中的操作 3 通過connection獲取statement物件,這是用來執行sql語句的 4 statement語句執行之後會返回乙個結果集resultset物件,通過sql語句的結果都在裡面 資料庫中的一波操作結束了之後...