當前位置:首頁 » 操作系統 » 文本框顯示資料庫數據

文本框顯示資料庫數據

發布時間: 2022-06-16 22:54:48

① 如何把從資料庫中取出的數據放入文本框中顯示

在後台將數據保存到session、cookie等幾大內置對象之一種,在頁面提取內置對象的屬性就可以得到

② vb 中如何讓textbox控制項裡面顯示資料庫(sql)的內容

1.VB 代碼如下:
Private Sub Command1_Click()
Dim adocn As New ADODB.Connection
Dim rs As New ADODB.Recordset
Dim strSql As String
strSql = "select * from 表名 where 欄位名=" & 名字
adocn.Open
rs.Open strSql, adocn, 3, 3
If rs.EOF And rs.BOF Then
Set rs = Nothing
adocn.Close
MsgBox "查無信息", vbCritical + vbOKOnly, "信息"
Exit Sub
Else
Text1.Text = rs.Fields("想要顯示欄位名項目")
rs.Close
Set rs = Nothing
adocn.Close
End If
End Sub

③ 怎麼實現單擊A文本框,B文本框顯示資料庫中對應的數據

建議你這樣試試看:

  1. 在VS中寫好資料庫訪問類,包含增刪改查
  2. 在app.config或者直接在類中定義好資料庫連接字元串

  3. 使用文本框的單擊事件來觸發讀取資料庫中數據,然後再將查詢到的數據顯示到文本框中

如有什麼哪些沒講清楚的,請追問

④ C#如何把資料庫裡面的東西讀出來,並且顯示在文本框裡面呢

第一步,先建立與資料庫的連接

第二步,在program.cs裡面寫程序

using System;

using System.Collections.Generic;

using System.Configuration;

using System.Data;

using System.Data.SqlClient;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

namespace CaterDal

{

public static class SqliteHelper

{

//從配置文本中讀取連接字元串

private static string connStr = "Data Source=資料庫的名稱;Initial Catalog=SWALL;User ID=SA;Password=666";//是這個資料庫沒錯吧?

public static DataTable GetDataTable(string sql,params SqlParameter[] ps)

{

using (SqlConnection conn=new SqlConnection(connStr))

{

//構造適配器對象

SqlDataAdapter pter=new SqlDataAdapter(sql,conn);

//構造數據表,用於接收查詢結果

DataTable dt=new DataTable();

//添加參數

pter.SelectCommand.Parameters.AddRange(ps);

//執行結果

pter.Fill(dt);

//返回結果集

return dt;

}

}

}

}

第三步,在項目裡面寫程序

private void button4_Click(object sender, EventArgs e)

{

DataTable Dt = SqliteHelper.GetDataTable("select * from jjjj");

dataGridView1.DataSource = Dt;

}

}

}

private void button4_Click(object sender, EventArgs e)

{

DataTable Dt = SqliteHelper.GetDataTable("select * from jjjj");

dataGridView1.DataSource = Dt;

}

}

}

private void button4_Click(object sender, EventArgs e)

{

DataTable Dt = SqliteHelper.GetDataTable("select * from lishiji");

dataGridView1.DataSource = Dt;

}

}

}

Form1.cs項目名


private void button4_Click(object sender, EventArgs e)

{

DataTable Dt = SqliteHelper.GetDataTable("select * from jjjj");

dataGridView1.DataSource = Dt;

}

}

}

FROM2.CS項目名

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

using System.Windows.Forms;

using System.Data.OleDb;

using CaterDal;

namespace sqlssss

public partial class Form2 : Form

{

public Form2()

{

InitializeComponent();

}

private void button1_Click(object sender, EventArgs e)

{

DataTable Dt = new DataTable();

Dt = SqliteHelper.GetDataTable("select * from lishiji");

DgvQueue.DataSource = Dt;

}

}

}

⑤ 怎樣在文本框里顯示資料庫里的對應內容呢

這個做過呢?
比如說這篇文章是 「大家喜歡奧運嗎」

如果我想回復這篇文章的話: 標題上應該就是

回復:大家喜歡奧運嗎,

這個當你顯示這篇文章的時候,點擊 回復 的時候 直接傳值 文章的id,到評論的頁面,到資料庫取出"標題"然後呢

string title = "回復:"+標題",,不就可以

public static string ExecuteScalar(string sql)
{
string value = string.Empty;
using (SqlConnection conn = new SqlConnection(System.Configuration.ConfigurationManager.ConnectionStrings["connstr"].ConnectionString))
{
SqlCommand comm = new SqlCommand(sql, conn);
try
{
conn.Open();
value = comm.ExecuteScalar().ToString();
}
catch
{

}
finally
{
conn.Close();
}
}
return value;
}

//根據上面的代碼,,你直接寫一個sql,當然這個只是方法罷了。你可以其他方法讀取
string sql = "Select title from article where articleID=XX,讀取標題。。然後加上前面的字元串就可以了。是你要的答案嗎

⑥ 如何將資料庫中的數據顯示在文本框中

舉例如下: ①讀資料庫: set rs=server.CreateObject("ADODB.RecordSet") rs.Source="select * from XXX(表名) order by XXX(表中的列名,如:編號) desc" rs.Open rs.Source,conn,1,1 ②顯示部分:(其中下面width的比例就是網頁上顯示的工作表中的不同列) <td width=10%><%=rs("XXX(列名)")%></td> <td width="40%"><%=htmlencode(XXX(列名))%></td> <td width="12%"><%=trim(rs("XXX(列名)"))%> </td> <td width="22%"><%=trim(rs("XXX(列名)"))%></td> <td width="6%"><%=Month(rs("XXX(列名)")) %>-<%=Day(rs("XXX(列名)")) %></td>

⑦ 如何在vb text文本框控制項中,顯示access資料庫中的表

1:Access,建立資料庫,資料庫命名為Database1.mdb。

(注意:這里的後綴是MDB,如果Access是2007版本的,保存的時候要另存為2003版本的才行,因為,VB不直接支持07版的accdb後綴格式。)

2:資料庫建立後就進入了數據表界面,可以輸入數據了,輸完以後CRRL+S保存,輸入表名,這里表名為test,ok,准備工作搞定。

⑧ 怎麼把資料庫查詢出來的結果顯示在文本框中

我不知道你用什麼軟體寫,至於把查詢數據放到靜態文本框可以這樣:
string d_text
select sum(金額) into d_text from 表;
sle_2.text = string(d_text)

⑨ asp 怎麼實現點擊文本框顯示資料庫里的數據

寫入資料庫,肯定要返回到某個頁面的,或者直接返回當前頁面,這時候在下面接著調用資料庫中數據顯示出來就行,可以利用?action=view此類的方法
BT的問題
用session或cookies保存

熱點內容
動態規劃01背包演算法 發布:2024-11-05 22:17:40 瀏覽:849
nasm編譯器如何安裝 發布:2024-11-05 22:01:13 瀏覽:181
登錄密碼在微信的哪裡 發布:2024-11-05 22:00:29 瀏覽:739
c防止反編譯工具 發布:2024-11-05 21:56:14 瀏覽:248
安卓虛擬機怎麼用 發布:2024-11-05 21:52:48 瀏覽:344
php時間搜索 發布:2024-11-05 20:58:36 瀏覽:479
燕山大學編譯原理期末考試題 發布:2024-11-05 20:13:54 瀏覽:528
華為電腦出現臨時伺服器 發布:2024-11-05 20:05:08 瀏覽:408
斗戰神免費挖礦腳本 發布:2024-11-05 19:53:25 瀏覽:665
網吧伺服器分別是什麼 發布:2024-11-05 19:45:32 瀏覽:392