C#代码详细解释 求大神 解释完整 下面是数据库的语句
stringsql="select*from[dbo].[Table]whereUserName='"+username+"'andPassword='"+passwor...
string sql = " select * from [dbo].[Table] where UserName ='" + username + "' and Password = '" + password + "'";
SqlCommand cmd = new SqlCommand(sql, conn);
cmd.CommandText = "select * from [dbo].[Table] where UserName='" + username + "'"; 展开
SqlCommand cmd = new SqlCommand(sql, conn);
cmd.CommandText = "select * from [dbo].[Table] where UserName='" + username + "'"; 展开
展开全部
你好,我学C#有数载 ,这个主要是查询数据库。你刚刚学这方面要记住,命名空间: System.Data.SqlClient,程序集: System.Data(在 System.Data.dll 中)
string sql = " select * from [dbo].[Table] where UserName ='" + username + "' and Password = '" + password + "'"; //这句是你SQL语句的查询, UserName是数据库的字段名,'" + username + "' 这个应该是你txtbox上输入的值。Password 也是[dbo].[Table] 里的字段名
SqlCommand cmd = new SqlCommand(sql, conn);//这句话主要是要来执行上面SQL语句,conn是你创建的连接对象(SqlConnection con = new SqlConnection(),conn.open,就是说明连接要先打开数据库)
cmd.CommandText = "select * from [dbo].[Table] where UserName='" + username + "'";
你的这个语句意思就是在数据库的 [dbo].[Table]表中查UserName这个字段
希望你早点总结自己的一套编程思想,先把这些基础搞好,能来这里问这些基础的东西说明你还是很好学的,多看看别人写的代码,进步就来得快点。
string sql = " select * from [dbo].[Table] where UserName ='" + username + "' and Password = '" + password + "'"; //这句是你SQL语句的查询, UserName是数据库的字段名,'" + username + "' 这个应该是你txtbox上输入的值。Password 也是[dbo].[Table] 里的字段名
SqlCommand cmd = new SqlCommand(sql, conn);//这句话主要是要来执行上面SQL语句,conn是你创建的连接对象(SqlConnection con = new SqlConnection(),conn.open,就是说明连接要先打开数据库)
cmd.CommandText = "select * from [dbo].[Table] where UserName='" + username + "'";
你的这个语句意思就是在数据库的 [dbo].[Table]表中查UserName这个字段
希望你早点总结自己的一套编程思想,先把这些基础搞好,能来这里问这些基础的东西说明你还是很好学的,多看看别人写的代码,进步就来得快点。
追问
'" + username + "'"
这个 单引号 双引号 再加+号 username+ 这个格式 是规定的吗? 我学的C#课本没提到
追答
你到VS里面去打一下代码就知道,SQL是是where 字段名=‘ ’ 在VS这里是 where 字段名=’ "+值+” ‘,都是包在引号 ’ ‘ 里面,看下ADO.NET
展开全部
string sql = " select * from [dbo].[Table] where UserName ='" + username + "' and Password = '" + password + "'"; //这里把查询的sql赋给字符串变量sql,供下面语句使用,和下面语句紧密相关
SqlCommand cmd = new SqlCommand(sql, conn); //建立查询对象,new SqlCommand(sql, conn)中,sql就是上面的sql语句,conn也是字符串变量啦,存放的是连接数据的信息,如数据库名称、账号、密码等信息(比如:string conn = "Data Source=orcl;Persist Security Info=False;User ID=system;Password=zero;Unicode=True";)
cmd.CommandText = "select * from [dbo].[Table] where UserName='" + username + "'";
//这里赋予cmd的属性CommandText,用于指定要执行的SQL语句或存储过程,这里是sql查询语句啦,查找[dbo].[Table]表中UserName字段等于username变量的记录
有问题再追问吧,望采纳。
追问
'" + username + "'"
这个 单引号 双引号 再加+号 username+ 这个格式 是规定的吗? 我学的C#课本没提到
追答
"select * from [dbo].[Table] where UserName='" + username + "'"
这句应该分解成这样
"select * from [dbo].[Table] where UserName='"
username
"'"
就是字符串连接,用+号连起来,username是字符串,所以要用单引号扩起来'username',其实用sql来看就很直白了,但是这里username是变量所以需要上面那样写的。
select * from [dbo].[Table] where UserName='张三'
有问题再追问吧。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
第一步:获取数据库连接字符串
二:SqlConnection con=new SqlConnection("数据库连接字符串");//连接对象实例
con.open();//打开连接
三:SqlCommand com=new SqlCommand(con);//命令对象实例
com.CommandText=sql;//要执行的Sql语句
SqlCommand cmd = new SqlCommand(sql, conn);//已经把sql给cmd了;下面这条语句多余
cmd.CommandText = "select * from [dbo].[Table] where UserName='" + username + "'";
二:SqlConnection con=new SqlConnection("数据库连接字符串");//连接对象实例
con.open();//打开连接
三:SqlCommand com=new SqlCommand(con);//命令对象实例
com.CommandText=sql;//要执行的Sql语句
SqlCommand cmd = new SqlCommand(sql, conn);//已经把sql给cmd了;下面这条语句多余
cmd.CommandText = "select * from [dbo].[Table] where UserName='" + username + "'";
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
建议看一下ADO.NET方面的资料,很重要!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询