我是C#的新手,需要創建一個小表單應用程序,它有兩個文本框,一個請求[File_ID],然後當按鈕是按下將該號碼發送到查詢,並在另一個文本框中顯示輸出。C#按鈕,將文本從一個文本框添加到另一個基於SQL查詢的文本框
我一直在玩弄它,並有類似的東西。但它不起作用。我不確定我是否應該走另一個方向。我將衷心感謝您的幫助。
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.SqlClient;
namespace testing
{
public partial class Form1 : Form
{
String str,dr;
SqlConnection con = new SqlConnection("Data Source=USHOU2016\\USFi;Initial Catalog=HOU_2016_Project;Integrated Security=True");
SqlCommand cmd;
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
con.Open();
str = "SELECT TOP 1,[Sender Name],[Subject] from [OLE DB Destination] WHERE [CHAT #] ='" + textBox1.Text + "'";
cmd = new SqlCommand(str, con);
// dr = cmd.ExecuteReader();
con.Close();
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
}
private void textBox2_TextChanged(object sender, EventArgs e)
{
textBox1.Text = cmd.ExecuteScalar().ToString();
}
}
}
謝謝。我將只需要C#作爲一種工具,以表格格式輸出我的SQL數據。我將如何執行cmd = new SqlCommand(str,con);我需要添加任何東西到文本框1? –