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

時間 2021-09-13 17:55: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值

php怎麼把從資料庫裡查詢的資料十條的顯示出來

select from table limit 0,10 從0開始,共10條 sql的limit語法的如以下形式 select from table limit offset,rows rows offset offset 當省略offset的時候,offset作為0處理,表示提取查詢到的前rows...

c中怎麼讀取oracle資料庫裡的表

string connstr provider msdaora data source dbname user id user name password sa unicode true dbname是你的資料庫名 user name是你的資料庫登陸名 sa是密碼 string sqlstr sel...

怎麼刪除SQL資料庫裡某表下面大於240的資料

1.刪除表中的行 truncate table 2.刪除表中的行 delete 語句 3.刪除表 drop table truncate table 刪除表中的所有行,而不記錄單個行刪除操作。語法 truncate table table name 引數 table name是要截斷的表的名稱或要刪...