label繫結資料庫SQL,C中如何在labelText上顯示SQL資料庫裡的某一個值

2021-05-24 08:21:03 字數 4275 閱讀 8160

1樓:匿名使用者

label是不能直接繫結的,因為你從資料庫查出來的資料是一張表,只有把它賦給一個datatable或datarow才行。例如:在datalist中新增幾個label,繫結datalist之後再將對應的欄位賦給label.

text

2樓:匿名使用者

當然你要先執行查詢語句,得到相應的資料集,然後直接用程式賦值給label 的text屬性就行了

3樓:強唐華

先把 要查詢的表中的資料顯示到dataset中, label1.databind=ds[「使用者名稱」],類似

4樓:

如果使用的軟體是vfp的話,,建立索引,在form表單裡利用賦值語句 賦值給label.caption

如何將資料庫中的欄位資料繫結顯示在label或textbox控制元件中

5樓:楷銥浴鍶

不同的開發語言**不同,以c# winform為例:

方法一、資料繫結

首先連線資料庫,讀取資料 繫結控制元件 textbox1.text=資料庫取出值

方法二、寫**

//sql語句string sql = string.format("select text from test where id = )", 1);

//資料庫名為temp.mdb,表為test,包含2個欄位:id 和 text

string dbconnectionstring = "data source=***puter-pc;user id=sa;password=123456;initial catalog=temp;pooling=true";

sqlconnection con = new sqlconnection(dbconnectionstring);

sql***mand cmd = new sql***mand(sql, con);

cmd.***mandtype = ***mandtype.text;

sqldatareader myreader;

con.open();

myreader = cmd.executereader();

textbox1.text = myreader["text"].tostring();

messagebox.show("完成!", "系統提示", messageboxbuttons.ok, messageboxicon.information);

cmd.cancel();

myreader.close();

c#中如何在label.text上顯示sql資料庫裡的某一個值

6樓:匿名使用者

sqlconnection sqlconn = new sqlconnection();

sqlconn.connectionstring = "";

sqlconn.open();

sql***mand cmd = sqlconn.create***mand();

cmd.***mandtext = "select 職務 from 使用者資訊 where 賬號 = '7'";

sqldatareader reader = cmd.executereader();

reader.read();

string temp_role = reader.getstring(0);

sqlconn.close();

label1.text = temp_role;

具體的sql語句,連線字元竄你自己對應著改,其他應該不會報錯的,結果就是你要的

7樓:

後臺呼叫 資料庫方法查詢需要的值 ,返回這個值,

例子:string fd=select id from tb_login where id='***';

label.text=fd;

8樓:匿名使用者

上面**太麻煩

多餘了.......

string connectionstring=******xx; //自己定義

sqlconnection myconn = new sqlconnection(connectionstring);

myconn.open();

string mysql = "select id from tb_login where id='***'";

sql***mand mycmd = new sql***mand(mysql, myconn);

sqldatareader myreader = mycmd.executereader();

myreader.read();

label.text=myreader["id"].tostring();

.......

9樓:匿名使用者

讀資料庫,寫個table出來。看第一行第一個的值就是要找的

10樓:匿名使用者

sqlconnection conne = new sqlconnection("data source = ***x; initial catalog=***x ; user id=sa ; password = ***x");

public datatable querytodatatable(string sqlcondition)

private void btnkkk_click(object sender, eventargs e)

conne.close();}

11樓:從沒覺得累

定義一個全域性變數,比如全域性變數是f

在label.text寫<%=f%>

12樓:匿名使用者

怎麼沒有關閉資料庫?

vs2010 c# 中label如何顯示資料庫sql server 2008中資料

13樓:匿名使用者

string strconn = "provider=microsoft.jet.oledb.

4.0;data source=d:\\agencytls\\basedata.

mdb;jet oledb:database password = 000000;";

oledbconnection conn = new oledbconnection(strconn);

conn.open();

if (conn.state == connectionstate.open)//如果資料庫連線了

是這個意思嗎?

如何讓label控制元件繫結資料庫的資訊

14樓:育知同創教育

this.label控制元件.databindings.

add("text", dataset.tables["表名"|索引名], "欄位名"); 上面就是將資料庫資料繫結到指定控制元件,但是五條不能一起顯示 可以通過currencymanager類導航。。。

">檢視詳細

aaa.aspx頁面放一個label

然後 <%=request["conent"]%>

asp.***中怎樣讓label控制元件顯示資料庫中某條記錄中指定的欄位

15樓:匿名使用者

給你寫個最簡單的例子比如說頁面上有三個textbox控制元件!

//連線字串

string constring = configurationmanager.connectionstrings["democonnectionstring"].connectionstring.

tostring();

protected void page_load(object sender, eventargs e)

con.close();//關閉連線

}注意:不管你是想獲取那個欄位的值,sql語句總重要!

16樓:匿名使用者

用sql查詢出你需要的商品**的某幾條記錄復給一個datatable或set

datatable = sql查詢出的資料----------------------------------string test = string.emity;

string _price = string.emity;

public string price

set}

for(int i = 0;i'>

資料庫中關係的性質是什麼,簡述資料庫關係的性質?

1.資料庫的基本概念 資料庫,資料庫管理系統,資料庫系統。2.資料模型,實體聯絡模型及e r圖,從e r圖匯出關係資料模型。3.關係代數運算,包括集合運算及選擇 投影 連線運算,資料庫規範化理 論。4.資料庫設計方法和步驟 需求分析 概念設計 邏輯設計和物理設計的相關策略。你說指的關係性質是什麼?麻...

請問下C如何將SQL資料庫中的整個表繫結到DataGridView控制元件中

region binddata private void binddata endregion 一樓的 你肯定是看不懂,你在頁面上加一個資料庫控制元件,加一個datagridview控制元件,設定一下資料庫控制元件連線資料庫,然後設定一下datagridview控制元件的資料來源為剛才你設定的那個資...

phpmyadmin的mysql資料庫中主鍵索引唯一各

主鍵 是唯一標示當前表裡的那一列,用主鍵可以代替表裡一條實體的內容,如 你有一個名字,有你的住址,號碼,籍貫,學位,政治面貌,等屬性,但唯一能夠標示你的還是你的身份證號,因為別人有可能有跟你同樣的名字,或者同樣的住址,或者同樣的的學位。但身份證是唯一的。通過身份證,我完全知道你本人。索引 就相當於你...