JDBC基本語法

2022-08-16 10:48:09 字數 737 閱讀 6759

jdbc基本操作步驟:

1,載入驅動,建立連線

2,執行sql語句

3,關閉連線

建立連線:  

載入驅動

class.forname("org.gjt.mm.mysql.driver");

建立連線,localhost代表本機,3306是埠,five是資料庫名,後面是編碼集合資料庫密碼;

con=drivermanager.getconnection("jdbc:mysql://localhost:3306/five?characterencoding=utf-8","root","123456");

執行sql語句

ps=con.preparestatement(

"insert into t_product(productname,price,createtime)values(?,?,?)");

設定佔位符:

ps.setstring(1, bean.getproductname());

ps.setint(2, bean.getprice());

ps.setdate(3, bean.getbirthday());

更新資料庫:

ps.executeupdate();

抽象之後的關閉連線語法:

try

if (ps != null)

if (con != null)

} catch (sqlexception e)

JDBC基本操作

jdbc基本操作 載入驅動 class.forname com.mysql.jdbc.driver newinstance 建立連線 string url jdbc mysql localhost 3306 testdb?user root password root useunicode true...

jdbc基本流程

public class jdbctest03 else login yinweidf 123456 or 1 1 change 轉賬 張三給李四轉賬100元 保證在同乙個事務中,通知成功,同時失敗 事務預設自動提交,設定手動提交 public static void change else cat...

JDBC基本知識

jdbc對資料庫操作的六個基本步驟 1.註冊資料庫驅動 2.獲取資料庫連線 3.獲取傳輸器物件 4.利用傳輸器傳輸sql到資料庫執行,獲取結果集物件 5.遍歷結果集,獲取結果資料 6.關閉資源 這裡低層是將連線還回資料來源中 statement和preparedstatement都可以作為執行sql...