本文介绍了没有从数据库中选择的数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 限时删除!! 亲爱的所有人, i希望在文本框区域中选择数据库中的数据但是它没有选择并向我显示我的异常我的代码有什么问题请告诉我我。我想用enter事件创建它以便如何实现。 im使用此代码。 私人 void txtPriceGold_Enter( object sender,EventArgs e) { string connstr = @ Server =。\ SQLEXPRESS; Initial Catalog = ABJDATABASE; Integrated Security =真;最大池大小= 100; string strSql = 从PriceTable中选择txtPriceGold其中txtPriceGold = @txtPriceGold; SqlConnection conn = new SqlConnection(connstr); 尝试 { conn.Open(); SqlCommand objCommand = new SqlCommand(strSql,conn); 使用(SqlDataReader dr = objCommand.ExecuteReader()) { bool success = dr.Read(); if (成功) { txtPriceGold.Text = dr.GetString( 0 ); } } conn.Close(); } catch (例外) { MessageBox.Show( 错误); } } 解决方案 Dear All,i want to select the data from database in a textbox area but its nothing select and show me my exception what is wrong in my code please tell me. i want to creates it with enter event so how it is possible.i m using this code. private void txtPriceGold_Enter(object sender, EventArgs e) { string connstr = @"Server=.\SQLEXPRESS ;Initial Catalog=ABJDATABASE;Integrated Security=True; Max Pool Size=100"; string strSql = "select txtPriceGold from PriceTable Where txtPriceGold=@txtPriceGold"; SqlConnection conn = new SqlConnection(connstr); try { conn.Open(); SqlCommand objCommand = new SqlCommand(strSql, conn); using (SqlDataReader dr = objCommand.ExecuteReader()) { bool success = dr.Read(); if (success) { txtPriceGold.Text = dr.GetString(0); } } conn.Close(); } catch (Exception) { MessageBox.Show("error"); }} 解决方案 这篇关于没有从数据库中选择的数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 1403页,肝出来的.. 09-07 14:14