用JAVA實現資料庫中資訊的新增

2021-09-20 03:29:20 字數 842 閱讀 4551

//00,提公升變數作用範圍

connection connection=null;

statement statement=null;

try

} catch (exception e) finally

} catch (sqlexception e)

try

} catch (sqlexception e)

}

說明:

executeupdate()用於執行update,insert,delete語句,返回乙個整數,整數代表此次操作所影響的表		的行數。

// 插入語句

string sql = "insert into use_info (id,user_name,password) values ('id','user_name','password')";

// 修改語句

string sql = "update student set name='名字',address='位址',mobile='手機號' where id='11'";

//刪除語句

string sql = "delete from student where id='id'";

不同的sql語句執行不同的操作。

finally中的語句不能寫成下邊的形式:因為如果出現statement異常,connection連線將不會關閉

finally 

if (connection!=null)

} catch (sqlexception e)

}

oracle 查詢表中和資料庫中資訊

1.查詢oracle資料庫中表 select from user tables 2.查詢表中資訊 select utc.table name,utc.column name,utc.data type,utc.data length,utc.data precision,utc.data scale...

JAVA實現mysql資料庫連線

實現資料庫連線 功能 獲取乙個資料庫的連線,public static connection getconnection catch classnotfoundexception e catch sqlexception e return conn 注意 public static void mai...

用ajax實現登入資料庫資料驗證

1 資料庫資料截圖 2 登入介面 3 登入失敗停留在登入介面 4 登入成功進入主介面 核心 登陸介面 def login request return render request,news login.html 登陸成功跳轉的首頁 def success request return render...