/**
* @auther: alex
* @date: 2020/12/26 - 12 - 26 -23:28
* @description: 測試使用proparedstatement操作blob型別的資料
* @verxion: 1.0
*/public
class
blobtest1
@test
public
void
test2()
throws exception }}
catch
(exception e)
finally
}}
/**
* @auther: alex
* @date: 2020/12/27 - 12 - 27 -18:03
* @description: blobtest
* @verxion: 1.0
*//*
使用preparedstatement實現批量的操作
說明:1、update、delete 本身就具有批量操作的效果
2、此時的批量操作,主要是批量插入,使用preparedstatement
如何實現更高效的批量插入
*/public
class
inserttest
*///方式二:使用preparedstatement
@test
public
void
test()
throws exception
jdbcutils.
closeresource
(conn,ps)
;long end = system.
currenttimemillis()
; system.out.
println
(end - start);}
/*方式三:
1、addbatch():
2、executebatch()
3、clearbatch()
注意:1、mysql預設情況是關閉批處理的,我們需要通過乙個引數,讓mysql開啟批處理支援
2、 ?rewritebatchedstatements=true寫在配置檔案的url後面
3、使用更新的mysql驅動,匯入jar包
*/@test
public
void
test2()
throws exception
} jdbcutils.
closeresource
(conn,ps)
;long end = system.
currenttimemillis()
; system.out.
println
(end - start);}
/* 方式四:設定不允許自動提交資料
*/@test
public
void
test3()
throws exception
}//統一提交資料
conn.
commit()
; jdbcutils.
closeresource
(conn,ps)
;long end = system.
currenttimemillis()
; system.out.
println
(end - start);}
}
資料型別 對資料的操作 奇葩關鍵字
一 亂世梟雄 static和extern 改變資料型別在記憶體中的位置或者改變作用域,作用在資料型別上 1 解釋 在c的世界裡,不同 國度 以.c檔案為國界分隔開來,在單個國家裡有不同函式占山為王,每個c程式世界裡只有乙個君主 main main通過下傳指令 引數 呼叫各種軍閥 函式 來掌控。某軍閥...
資料型別轉換(針對數字型別)
1 分為2大類 數字型別 int double 非數字型別 字元 字串 布林型別boolean 2 資料型別轉換分類 a 自動型別轉換 i.規則1 如果乙個運算元為double型別,則整個表示式可提公升為double型別 ii.規則2 滿足自動型別轉換的條件。兩種型別要相容 數值型別 整型int和浮...
Lua GC 對資料型別的特殊處理
luac barrierback和luac barrierf 區別 在gc過程中對新建的物件引用關係進行處理。例如 o 引用 v luac barrierf 掃瞄階段將v重新標記 v加入到當前gc 否則將o標記為white luac barrierback 將o加入到grayagain中。graya...