如何將資料庫中查詢出來的值賦給textbox

2021-05-02 22:09:12 字數 2144 閱讀 3907

1樓:浮雲曉

textbox1.text=查出來的值。也就是把查出來的值直接賦給textbox的text屬性就行了。不知道你是不是想要這樣的效果

2樓:匿名使用者

//估計還沒有學三層 所以就用這個吧

string connstr=configurationmanager.connectionstrings["connstr"].connectionstring;//web.

config裡面去配

public sqlconnection getconn()public void binddata()}this.tbxid = id;

this.tbxname = name;}

3樓:匿名使用者

不同的開發語言**不同,以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=computer-pc;user id=sa;password=123456;initial catalog=temp;pooling=true";

sqlconnection con = new sqlconnection(dbconnectionstring);

sqlcommand cmd = new sqlcommand(sql, con);

cmd.commandtype = commandtype.text;

sqldatareader myreader;

con.open();

myreader = cmd.executereader();

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

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

cmd.cancel();

myreader.close();

c# winform 如何把資料庫裡面的內容賦值給textbox

4樓:匿名使用者

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

//資料庫名

為temp.mdb,表為test,包含2個欄位:id 和 text

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

sqlconnection con = new sqlconnection(dbconnectionstring);

sqlcommand cmd = new sqlcommand(sql, con);

cmd.commandtype = commandtype.text;

sqldatareader myreader;

con.open();

myreader = cmd.executereader();

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

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

cmd.cancel();

myreader.close();

5樓:

解決幾步就行了,首先連線資料庫,讀取資料 繫結控制元件 textbox.text=資料庫取出值

sqldatareader

6樓:雷鋒雷鋒

第一步 查詢資料庫

第二布 賦值

mysql資料庫把查詢出來的資料進行替換後兩位

select concat left 陳大珠 1 先生 select replace 欄位,陳大柱 陳先生 from 表 求mysql如何替換資料庫中所有表所有欄位中的指定字元a為b 提供兩個辦法 bai 第一du個是,笨辦 法,查詢每個zhi欄位,看有單dao位的名內稱就修改一下容。第二個是,如果...

access資料庫中如何多表查詢

你問題的意思是把兩個查詢合在一起?union 就是把查詢結果合併 自動去重select 姓名 from 表a where 組 1 andunion select 姓名 from 表b where 組 1 用法忘的差不多了 不知道要不要在where裡面 表cd那個問題同理由 select from 表...

請問如何查詢oracle資料庫中是否有某個表的

1 看使用者的表的資訊如同marliuang所說,不再贅述。當然了你用a登入後也可以用命令 selecttnamefromtab 檢視專。2 顯示亂碼是因為oracle中的回屬收站 recyclebin 的緣故,為了防止使用者誤刪除,oracle引入了 站這一概念,你可以使用命令 purgerecy...