关于C#中查询出的数据库值赋值给textbox
SqlCommandcmd=newSqlCommand("selectUserNamefromloginTablewhereId="+LoginForm.UserInfo...
SqlCommand cmd = new SqlCommand("select UserName from loginTable where Id="+LoginForm.UserInfo.UserId,sqlcon);
如果要是textbox的值等于这个查询结果的的username
请问该怎么赋值 展开
如果要是textbox的值等于这个查询结果的的username
请问该怎么赋值 展开
展开全部
DataTable dt = new DataTable();
using(IDataReader reader = cmd.ExecuteReader())
{
dt.Load(reader);
}
if(dt.Rows.Count >0)
{
textbox1.Text=dt.Rows[0]["userName"].ToString();
}
using(IDataReader reader = cmd.ExecuteReader())
{
dt.Load(reader);
}
if(dt.Rows.Count >0)
{
textbox1.Text=dt.Rows[0]["userName"].ToString();
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
SqlDataReader dr = cmd.ExecuteReader();
while (dr.Read())
{
if (TextBox1.Text==dr[0].ToString())
{
//赋值
}
}
while (dr.Read())
{
if (TextBox1.Text==dr[0].ToString())
{
//赋值
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
object o;
using (SqlConnection conn = new SqlConnection(ConnStr))
{
conn.Open();
SqlCommand cmd = new SqlCommand(sql, conn);
o = cmd.ExecuteScalar();
conn.Close();
}
try
{
textBox.Text = o.ToString();
}
catch (Exception ex)
{ textBox.Text = ex.Message;}
using (SqlConnection conn = new SqlConnection(ConnStr))
{
conn.Open();
SqlCommand cmd = new SqlCommand(sql, conn);
o = cmd.ExecuteScalar();
conn.Close();
}
try
{
textBox.Text = o.ToString();
}
catch (Exception ex)
{ textBox.Text = ex.Message;}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
库,得到连接对象conn
2、用下面的select语句打开表,将数据读入RecordSet
set rs=conn.execute("select * from 表名")
3、用循环将数据读入二维数组arr
row=0
while not rs.eof
arr[row,0]=rs["id"]
arr[row,1]=rs["year"]
arr[row,2]=rs["mon"]
arr[row,3]=rs["1"]
arr[row,4]=rs["2"]
...
...
...
row=row+1
wend
2、用下面的select语句打开表,将数据读入RecordSet
set rs=conn.execute("select * from 表名")
3、用循环将数据读入二维数组arr
row=0
while not rs.eof
arr[row,0]=rs["id"]
arr[row,1]=rs["year"]
arr[row,2]=rs["mon"]
arr[row,3]=rs["1"]
arr[row,4]=rs["2"]
...
...
...
row=row+1
wend
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询