ADO.NET C#疑问?
stringComputername=System.Net.Dns.GetHostName();stringconnectSql="DataSource=XCH-PC;I...
string Computername = System.Net.Dns.GetHostName();
string connectSql = "Data Source=XCH-PC;Initial Catalog=db_LiteraryWeb;Integrated Security=True";
SqlConnection sqlConnection = new SqlConnection(connectSql);
sqlConnection.Open();
string sqlCommand1 = "select Password from tb_PersonalInformation where UID=" + Convert.ToInt32(TextBox1.Text);//查询语句
SqlDataAdapter sqlDataAdapter = new SqlDataAdapter(sqlCommand1, sqlConnection);
DataSet ds = new DataSet();
sqlDataAdapter.Fill(ds);
string password = ds.Tables[0].Rows[0]["Password"].ToString();
this.TextBox2.Text=password;
sqlConnection.Close();
以上代码是正确的 能够在TextBox2中显示相应的密码。那么以下的哪里有错?
string sqlCommand1 = "select Password from tb_PersonalInformation where LoginName=" + (TextBox1.Text);//查询语句
SqlDataAdapter sqlDataAdapter = new SqlDataAdapter(sqlCommand1, sqlConnection);
DataSet ds = new DataSet();
sqlDataAdapter.Fill(ds);
string password = ds.Tables[0].Rows[0]["Password"].ToString();
this.TextBox2.Text=password;
我在TextBox1中输入nan(已有的LoginName)结果显示“System.Data.SqlClient.SqlException: 列名 'nan' 无效。” 展开
string connectSql = "Data Source=XCH-PC;Initial Catalog=db_LiteraryWeb;Integrated Security=True";
SqlConnection sqlConnection = new SqlConnection(connectSql);
sqlConnection.Open();
string sqlCommand1 = "select Password from tb_PersonalInformation where UID=" + Convert.ToInt32(TextBox1.Text);//查询语句
SqlDataAdapter sqlDataAdapter = new SqlDataAdapter(sqlCommand1, sqlConnection);
DataSet ds = new DataSet();
sqlDataAdapter.Fill(ds);
string password = ds.Tables[0].Rows[0]["Password"].ToString();
this.TextBox2.Text=password;
sqlConnection.Close();
以上代码是正确的 能够在TextBox2中显示相应的密码。那么以下的哪里有错?
string sqlCommand1 = "select Password from tb_PersonalInformation where LoginName=" + (TextBox1.Text);//查询语句
SqlDataAdapter sqlDataAdapter = new SqlDataAdapter(sqlCommand1, sqlConnection);
DataSet ds = new DataSet();
sqlDataAdapter.Fill(ds);
string password = ds.Tables[0].Rows[0]["Password"].ToString();
this.TextBox2.Text=password;
我在TextBox1中输入nan(已有的LoginName)结果显示“System.Data.SqlClient.SqlException: 列名 'nan' 无效。” 展开
2个回答
展开全部
错误是在你sql'语句LoginName是字符串类型,sql语句里面的处理是,字符串的前面和后面都需要加上一个“'”单引号:
string sqlCommand1 = "select Password from tb_PersonalInformation where LoginName=‘" + (TextBox1.Text)+“’”;//查询语句
string sqlCommand1 = "select Password from tb_PersonalInformation where LoginName=‘" + (TextBox1.Text)+“’”;//查询语句
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
威孚半导体技术
2024-08-19 广告
2024-08-19 广告
威孚(苏州)半导体技术有限公司是一家专注生产、研发、销售晶圆传输设备整机模块(EFEM/SORTER)及核心零部件的高科技半导体公司。公司核心团队均拥有多年半导体行业从业经验,其中技术团队成员博士、硕士学历占比80%以上,依托丰富的软件底层...
点击进入详情页
本回答由威孚半导体技术提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询