獲取從資料庫select到的值存到list的資料

2021-07-09 07:15:18 字數 1033 閱讀 5597

1.select單個值的,比如執行這條語句:

select count(id) from user;

並將結果放到list

中,這時候,乙個比較笨的取得

id值的方法是:

for(object object : list){

string number = object.tostring();

system.out.println(「number:」+number);

2.select多個值的,比如執行以下語句:

select id,name,*** from user;

將結果放到list

中的時候,

list list =getcurrentsession().createquery(hql).list();

取出id,name,***

的值,也可以這樣來:

for(object object : list){

string id = (string)object[0];

string name = (string)object[1];

string *** = (string)object[2];

3.如果是乙個資料表的內容,可以用乙個資料物件來獲取:

listuser= getcurrentsession().createquery(hql).list();

string id = user.getid();

string name = user.getname();

calendar birthday= calendar.getinstance();

birthday.settime(user.getbirthday());

string year = birthday.get(calendar.year) + "";

string month = (birthday.get(calendar.month) + 1) + "";

string day = birthday.get(calendar.day_of_month) + "";

獲取select的值

1.html南京市 蘇州市無錫市 常州市 1 當option標籤的value值就是需要取得值時 js document.queryselector select value jquery select val 2 需要取得值不是value值而是顯示的值 jquery select option se...

select框下拉多選(從資料庫中獲取選項)

前面寫了幾篇關於select的文章,今天說一下select下拉框多選的問題。下拉框多選selectpicker外掛程式做的非常漂亮,selectpicker是bootstrap裡的乙個下拉框的元件。我在這個外掛程式初始化之前稍微加點東西,實現下拉框的選項從資料庫中讀取並根據傳入值預設選中。使用jqu...

資料庫 從刪除到修復

前言 資料庫 刪除後,恢復流程記錄 首先 進入 cd etc my.cnf 檔案裡 檢視 是否新增了 log bin mysql bin log bin mysql bin 查詢這句,很重要。沒有這句,就不能用binlog 來修復了 資料庫恢復流程 1.開始之前 先備份檔案 mysql data 這...