1) 概述
connection用於在應用程式和關係型資料庫之間建立乙個連線通道。
2) 使用步驟
選中jar包(或lib資料夾) à (滑鼠右鍵)build path à add to build path
說明:資料庫驅動包一般是由資料庫廠商提供的。
13) 注意事項public
static
void main(string args) throws
classnotfoundexception, sqlexception
1) 概述
用於執行靜態的sql語句。並返回相應的結果物件。
2) 使用步驟
3) 示例
1/**2
* 執行靜態sql語句
3* 非查詢語句:insert、delete及update
4* 查詢語句:select5*
6* 受影響行數 executeupdate(待執行sql語句) :執行非查詢語句7*
@throws
sqlexception 8*
@throws
classnotfoundexception 9*/
10@test
11public
void doadd() throws
sqlexception, classnotfoundexception
C string類常用介面
string類的常用介面 1 string類物件的常見構造 include include using namespace std intmain 2 string類物件的容量操作 include include using namespace std size length capacity cl...
C string類常用介面
string s1 構造空的string類物件s1 string s2 hello 用c格式字串構造string類物件s2 string s3 s2 拷貝構造s3s.size 返回字串有效字元長度 s.capacity 返回總空間大小 s.empty 判斷字串是否為空,為空返回true s.clea...
JDBC常用類和介面
一 註冊資料庫驅動程式 在對資料庫進行操作之前,必須要建立程式與乙個具體資料庫的連線,而在連線資料庫之前,必須要註冊該資料庫的驅動程式。完成此項工作的是drivermanager類!註冊資料庫方驅動程式 public static void registerdriver driver driver ...