怎麼把資料庫裡的值賦給變數,怎麼把資料庫裡的值賦給一個變數

時間 2021-09-13 17:54:48

1樓:匿名使用者

在asp.net中你可以先把資料庫中的值讀取到一個dataset,datareader,datatable之類的記錄集中.拿dataset來說吧比如你通過select id,name from tabname這條語句得到一百條資料,然後把這一百條資料賦給一個ds的記錄集,在頁面中的取值就很方便了.

1.給gridview賦值

gridview1.datasource=ds;

gridview1.databind();

2.直接給某個變數,label,textbox賦值

string aid=ds.tables[0].rows[0]["id"].tostring();

label1.text=ds.tables[0].rows[0]["id"].tostring();

textbox1.text=ds.tables[0].rows[0]["id"].tostring();

希望對你有幫忙

2樓:匿名使用者

你是將資料庫的東西用到程式裡嗎? 那你先將資料庫的東西檢索出來,然後再進行處理?

c#中怎麼把sql資料庫的一個資料賦值給一個變數

3樓:匿名使用者

連線資料庫,並從資料庫中讀取資料後並輸出!

using system;

using system.collections.generic;

using system.linq;

using system.text;

using system.data.sqlclient;

namespace login

,name:,pwd:,age:,***:,phone,address:\n", id, name, pwd, age, ***, phone, address);}}

console.readkey();

}//得到一個資料庫連線字串

static string getconnectstring()}}

4樓:

只要說一下sql語句?這樣的話一樓的就是你要的答案了。不過你好像不只要sql語句;以下貼**:

string str1="select count from kucun where num=值";

string str2="server=伺服器名稱;data=資料庫名稱;uid=登入名;pwd=登入密碼";

sqlconnection con=new sqlconnection(str2);

con.open();

if(con.state==connectionstate.open)

5樓:南宮蕭塵呀

select count from kucun where num = 你輸入的值

php怎麼將資料庫的一個值賦值給一個變數

6樓:6丶到沒朋友

$id=$row['id'];

$row 就是查詢得到的陣列 $row['id'] 就是陣列裡面的id值

C操作SQL資料庫,怎麼把查詢出的結果賦給變數,需要參與計

給你個用例 先定義乙個變數給你使用 string strshiyong sqlconnection conn new sqlconnection 資料庫連線字串 string sqlstr select tablename.c from tablename where tablename.id 50...

php從資料庫裡得到value的值為 1 ,請問怎麼才能得到

array array 一星 二星 三星 四星 五星 echo array date star 1 這裡 1,因為陣列是從0開始的。如果你想是在 中選可以給每個option後面加上判斷。一星或者你想更好一點的話,下面的 array array 一星 二星 三星 四星 五星 foreach array...

向資料庫裡插入大量資料,怎麼實現不插入重複的記錄

牧羊者的故事 給es插入資料之前,每條資料加一列唯一索引,指定這個索引作為es每個document的 id,直接插入,如果有重複資料會更新。 靈貓的羽毛 像這種比較複雜的帶邏輯的最好用儲存過程做 create procedure altertable col1 varchar 20 col2 dat...