标题:这段代码其中有一些不太明白??是判断不能重复注册的...
取消只看楼主
爱颖无间道
Rank: 1
等 级:新手上路
帖 子:13
专家分:0
注 册:2008-3-30
 问题点数:0 回复次数:1 
这段代码其中有一些不太明白??是判断不能重复注册的...
string sql = "select count(*) from yanzheng where vdengluname='" + textBox1.Text + "'";//不明白,查询的目的是什么??

SqlConnection connection = new SqlConnection("Data Source=05608A0429C64E1\\123;Initial Catalog=jimmy;User ID=guchao;Password=jimmy");//明白
SqlCommand command = new SqlCommand(sql, connection);

command.Connection.Open();
int n = Convert.ToInt32(command.ExecuteReader ());//什么意思????//command.ExecuteReader ()不明白
command.Connection.Close();
if (n > 0) //n<0代表什么呢?
{
MessageBox.Show("该用户已经存在,请重新输入!");
this.textBox1.Text = "";
textBox1.Select();
}

麻烦解释一下 ,加注释的地方
搜索更多相关主题的帖子: command 代码 jimmy Connection 
2008-04-12 17:50
爱颖无间道
Rank: 1
等 级:新手上路
帖 子:13
专家分:0
注 册:2008-3-30
得分:0 
那如果这样的话 SqlDataReader reader = command.ExecuteReader();
int n = Convert.ToInt32(reader[0].ToString());和

int n = Convert.ToInt32(command.ExecuteReader ());得到的效果一样吗?
2008-04-12 22:29



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-208648-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.602237 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved