C# winform 如何把数据库里面的内容赋值给textbox

2024-11-01 23:26:01
推荐回答(3个)
回答1:

//sql语句string sql = string.Format("SELECT text FROM Test WHERE ID = {0})", 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();

回答2:

解决几步就行了,首先连接数据库,读取数据 绑定控件 textbox.text=数据库取出值

SqlDataReader

回答3:

第一步 查询数据库

第二布 赋值