Java培訓筆記二

2021-05-23 20:35:32 字數 1978 閱讀 2260

也是借的同學的筆記,免費培訓時候的。(2009-6-25)

* ==

通配----

新增insert into student (studentno, studentname,student***,studentmajor,studentgrade,studentaddress,……)

values (6

,』caicai』,』女』,

……)insert into 表名(

表的字段

)values

(表的字段對應的資料

)----

修改update student set studentname=』ceshi』 where studentno=5

update

表名set

要修改的字段=資料

where

條件----

刪除delete student where studentno=5

select

* from

student t查詢

select

student,studentname,student***

from

student

insert

into

student (studentno, studentname,student***,studentmajor,studentgrade,studentemail,studentaddress,studentmobiel,studentregistdate)

values(6

,'caicai','

女','

泡gg專業'

,'大1'

,'[email protected]','

中信','1314520'

,'2008/08/08')

insert

into

student (studentno, studentname,student***,studentmajor,studentgrade,studentemail,studentaddress,studentmobiel,studentregistdate)

values(7

,'caicai','

女','

泡gg專業'

,'大1'

,'[email protected]','

中信','1314520'

,'2008/08/08')

update

student

setstudentname=

'ceshi'

where

studentno=6

delete

student

where

studentno=7

使用第三方組建:將

d:/oracle/ora92/jdbc/lib

中的classes12.jar

新增入新建的

lib資料夾中

(在工程中新建),

右鍵該工程名檢視屬性,選

libraries

標籤,新增

jars

。testjdbc

1、載入

oracle

驅動try

2、通過驅動管理器類來建立資料庫鏈結,返回乙個鏈結物件

connection con = drivermanager

……3、

通過鏈結物件建立並執行

sql語句的物件

statement st = con.createstatement();

string sql = 「select studentno,studentname

4、通過

sql語句的物件執行

sql,返回結果放置在

resultset

物件中resultset rs = st.executequery(sql);

迴圈while (rs.next()) s

培訓筆記之java 二

第二天 i.判斷是不是數字的幾種方法 1 string score joptionpane.showinputdialog 請輸入數字 char scorearray score.tochararray for int i 0 i 9 scorearray i 0 2 正規表示式 public bo...

Java培訓總結筆記(二)

一 collection介面 collection是最基本的集合介面,用api文件的話說,是層次結構中的根介面。collection表示一組物件,這些物件也稱為collection的元素。collection最常用的子介面有list介面和set介面。1.list介面 list介面是有序的collec...

Java培訓總結筆記(四)

1.位元組流 主要操作byte型別資料,以byte陣列為準,一次讀入或讀出是8位二進位制,主要操作類有位元組輸入流 inputstream 和位元組輸出流 outputstream 兩個抽象類,面向裝置寫入,無緩衝區。示例 位元組流讀取檔案 throws ioexception private st...