對jdbcTemplated查詢後的結果進行處理

2021-09-21 01:52:56 字數 954 閱讀 4454

對jdbctemplated查詢後的結果進行處理

string sql = '''select work_for_building_ids from face_sign_contract_woker'''

string a = jdbctemplate.queryforobject(sql,string.class)

用queryforobject接受乙個物件,後面為宣告物件的類

string sqlid = '''select building_project_name

from face_camera_info

where building_project_id = ?'''

string d = jdbctemplate.queryforobject(sqlid,string.class,integer.parseint(b[i]))

也可以新增引數,只是需要在類宣告後面新增,用queryforobject只能對單表單資料進行處理

需要多資料處理queryforlist或者queryformap,不然會報錯incorrect result size: expected 1, actual

string sql = '''select work_for_building_ids from face_sign_contract_woker'''

listlist = jdbctemplate.queryforlist(sql)

for(string ids : list) {

try{

system.out.println(ids)

string a = ids.split("=")

a[1] = a[1].substring(0,a[1].length()-1)

再遍歷從而對資料進行處理

ps:有什麼問題多多指教

對並查集學習的總結

在poj上做了一些題,在貢獻ac的同時,貢獻了 e n 的wa,tl,ml和re。現在就來總結一下這乙個多禮拜對並查集的感受,也把並查集的標程寫出來以備後用。尋找集合的頭元素 並對路徑進行壓縮 notice 在main裡邊要將parent全部初始化為 1 int find int x else re...

jdbc對mysql的增刪改查

增 string sql insert into d book values 預編譯 private static dbutil db new dbutil private static int addbook bookmodel bookmodel1 throws exception 刪 stri...

vue 對arr動態增刪改查

當你利用索引直接設定乙個項時,例如 vm.items indexofitem new value解決方案 array.prototype.splice example1.items splice indexofitem,1,newvalue 新增資料 this.list.unshift this.t...