jdbc
jdbc-本地驅動
jdbc-網路驅動
本地協議純jdbc驅動
主要操作類及介面
mysql資料庫
資料型別
插入資料:insert into 表名稱( 字段 ) values(值...);
刪除資料:delete from 表名稱 [刪除條件] ; 若無條件則清空表,條件如 「where id =1"
更新資料:update 表名稱 set 欄位1 =值 1 ... [where 更新條件]
查詢資料:select from 表名 [where ];
connection介面
resultset介面
讀取大物件資料
處理blob
使用blob方法更加方便
string
sql=
"";
callablestatement
cstmt
=conn
.preparecall
(sql
);
cstmt
.setint(1
,70);
cstmt
.setint(2
,80);
cstmt
.registeroutparameter(2
,types
.integer
);//設定返回值型別
cstmt
.registeroutparameter(3
,types
.integer
);
cstmt
.execute
();
可滾動的結果集——現在想取結果集中任意位置的資料
批處理
resultsetmetadata
JDBC基礎知識
connection con null statement st null resultset rs null try catch classnotfoundexception e 2.建立連線 con drivermanager.getconnection jdbc oracle thin 10....
JDBC基礎知識
class.forname new driver drivermanager 用getconnection 方法獲取資料庫連線。可以同時管理多個驅動程式 若註冊了多個資料庫連線,則呼叫 getconnection 方法時傳入的引數不同,即返回不同的資料庫連線。statement 用於執行靜態sql語...
JDBC 學習之 JDBC 基礎知識
jdbc是sun公司制定的乙個可以用j a語言連線資料庫的技術。一 jdbc基礎知識 jdbc j a data base connectivity,j a資料庫連線 是一種用於執行sql語句的j a api,可以為多種關聯式資料庫提供統一訪問,它由一組用j a語言編寫的類和介面組成。jdbc為資料...