1樓:匿名使用者
private void getdatabyparmsql***mand()
catch (exception ee)
finally}
2樓:乖乖
string connstring=//連線字串string sql=「"//資料庫查詢語句connection con=new connection(connstring);
***mand cmd=new ***mand(sql,con);
con.open();
sqldatareader dr=cmd.excutereader;
if(dr.read())
dr.close();
con.close();
3樓:匿名使用者
樓上所說可以··
但是如果確定是身份證的話···
那就是唯一的···
唯一的用model 物件返回單一的足以···不需要用到dataset
不知道你的專案中寫了實體類沒有!
返回乙個實體類就足以
4樓:天地梁心
把資料讀到之後存在乙個變數裡面,然後把變數顯示在textbox就行了啊
5樓:百度使用者
把sql語句查出的資料放進一張表裡,在逐個顯示就行了,判斷查出的表的行數是否為0,如果為0則用messagebox顯示「所查資料不存在」
c#怎麼從資料庫中得到乙個欄位的值
6樓:匿名使用者
//資料
庫連線字元
sqlconnection conn = new sqlconnection("server=.;database=資料庫名字;integrated security=sspi");
conn.open();
sql***mand cmd = new sql***mand( "select 要檢視的東西 from 表名字 where 表裡的欄位名");
sqldatareader sdr = cmd.executereader();
sdr.close();
int count = convert.toint32(cmd.executescalar());//count 就是你查詢得到值專, 比如你屬
檢視id就得到你的id值然後轉換成int型別 你可以對其進行賦值 計算 等等。
7樓:千鋒教育
sqlconnection con=new sqlconnection("連線字串");
sqldataadapter sda=new sqldataadapter("sql語句",con);
dataset ds=new dataset();
sda.fill(ds);
string val=ds.table[0].rows[第幾行回]["列名
答"].tostring();
8樓:學——海無涯
//資料庫連bai接字元
string connectionstring = "server=localhost;database=dbtest;uid=sa;pwd=sa;";
//這裡寫入
du你要執行的sql語句
zhistring cmdtext = "select * from table where ......";
//建立連線
sqlconnection conn = new sqlconnection(connectionstring);
//初始化daosql命令
sql***mand ***mand = new sql***mand(cmdtext, conn);
//執行命令,內read就是返回的值
容sqldatareader read = ***mand.executereader();
9樓:yk北極星
sqldatareader sdr = cmd.executereader();
sdr.read();
string str=sdr["filed_name"].tostring();
…………
sdr.close();
c#中,如何讓textbox控制項顯示資料庫中我要的資料或者文字
10樓:匿名使用者
若是你前台有拉了乙個textbox控制項的話,就直接在後台寫
string txt=「資料庫查詢後所獲得的值」
textbox控制項名.text=txt。tostring();
11樓:匿名使用者
後台先把資料庫或文字要顯示的資料讀取出來
然後編寫**this.lable1.text=變數;
this後面輸入.後,能直接預覽的到lable標籤的名字。
12樓:匿名使用者
textbox1.text=dt.rows[0]["username"].tostring();
textbox2.text=dt.rows[0]["password"].tostring();
sqlconnection con = new sqlconnection();
con.connectionstring="";
con.open();
sql***mand cmd = new sql***mand();
cmd.connection = con;
cmd.***mandtext = "select * from tb_users";
sqldataadapter sda = new sqldataadapter();
sda.select***mand = cmd;
datatable dt=new datatable();
sda.fill(dt);
13樓:
textbox textbox = new textbox();
textbox.text = "想要的顯示的文字";
c# 語言asp.*** 查詢資料庫表中的乙個資料,怎麼將其他的資料在頁面中textbox顯示出來?
14樓:農民
tryread.close();
}catch
con.close();
15樓:匿名使用者
應該寫成read["author"].tostring()吧
用c#編寫乙個介面,利用乙個textbox查詢資料庫,在另乙個textbox中顯示出來
16樓:匿名使用者
假設第乙個textbox名為txtbox1,第二個textbox為txtbox2,在該介面中的頭部需要引入兩個命名空間://假設使用的是sql server資料庫
using system.data;
using system.data.oledb;
在介面中雙擊button按鈕,填入如下**:
string str1; //儲存txtbox1中的內容
str1 = txtbox1.text.trim();
if(str1=="")
string ssql; //儲存要查詢的sql語句
ssql = "select 你想要的那列的列名 from [你要查詢的表] where 查詢涉及的列 = '"+str1+"'";
string sconnstr = "server=(local);uid=sa;pwd=;database=你的資料庫的名字;";
oledbconnection oldbconn = new oledbconnection(sconnstr);
trycatch(exception ex)
oledb***mand ocmd = new oledb***mand(oldbconn,ssql);
oledbdatareader odr = ocmd.excutereader();
if(odr.hasrows)
oldconn.close();
大致過程如上所述,自己除錯一下是否有錯誤
17樓:匿名使用者
首先準備介面
在button的click事件中
獲取textbox.text的值,然後去資料庫查詢(一下省略500字,這個要你會sql、ado.***)
然後再將結果顯示到textbox裡。
至於顯示時間可以使用
timer小鬧鐘控制項
在小鬧鐘的事件裡lable.text=datetime.now
c#中把textbox控制項中的內容新增進資料庫的某個表中
18樓:
sql = string.format("insert into [tb_book] (tb1, tb2,tb3,tb4,tb5) values('','','','','')", textbox1.text.
trim(), textbox2.text.trim(),textbox3.
text.trim(),textbox4.text.
trim(),textbox5.text.trim());
字串型的
才加單引號,其他型別的不用單引號
19樓:從沒覺得累
對sql語句就行比如string f=」insert into表名(字段)values(插入的值)」就行了
20樓:簡單
insert into表名(欄位1,欄位2……欄位n)values(textbox1.text,textbox2.text,……,textboxn.text)。
是變數,無需加引號,是常量,加單引號。sql語句中不用雙引號。
c#如何在textbox中顯示sql資料庫中表的每一行資料
21樓:夜偌殘
用dataset接收行資料,
dataset ds=這裡是sql查詢方法textbox1.text=ds.tables[0].
rows[0]["..."].tostring();//例如第乙個textbox對應資料庫id欄位 ["...
"]這裡...換成資料庫欄位id;
textbox2.text=ds.tables[0].rows[0]["..."].tostring();//後面類似。
不知道這個方法你看的懂不
c連線SQL資料庫的問題,c 連線SQL資料庫的問題
用程式連線需要開啟遠端連線 1在 sql server management studio 的物件資源管理器中,右鍵單擊伺服器,再單擊 屬性 2.在 安全性 頁上的 伺服器身份驗證 下,選擇混合驗證模式,密碼,再單擊 確定 3.在 sql server management studio 對話方塊中...
怎樣查詢SQL資料庫中某表中的某個列的數值的所有行數
select from accuont where vip 1 上面的1 是在你表中的型別 為數字類回型的答時候 select from accuont where vip 1 上面的1 是在你表中的型別為非數字型別的時候 select from accuont where vip 1 select...
有「學生課程」資料庫,資料庫中包括表
1.從庫中查詢計算機系選修資料庫基礎與應用的學生的學號 姓名 成績,按學號遞增專排序,存入遊屬標student中,唯讀。2.查詢資訊工程系學生的年齡。3.cover的這個啥沒學過就幫不上忙了 等待高人吧4.貌似 如果讀取的數值為0,則不允許刪除且允許定義新值ps 不是很肯定,你可以再參考下其他人的答...