arams7474
پنج شنبه 23 خرداد 1392, 17:32 عصر
سلام به دوستان
من یک برنامه دفترچه تلفن نوشتم ولی در اتصالش به دیتابیس دچار مشکل شدم کمک فوری باید پروژه را همین امشب تحویل بدم با تشکر . کد مورد نظر :
namespace Telephonbook
{
public partial class frmedite : Form
{
public string path = "Data Source=HOSPITAL-AS;Initial Catalog=Telephonbookdb;Persist Security Info=True;User ID=za;Password=1263";
public frmedite()
{
InitializeComponent();
}
private void btnjostojo_Click(object sender, EventArgs e)
{
SqlConnection cnn = new SqlConnection(path);
SqlCommand cmd = new SqlCommand("Select * from tblTelephon", cnn);
SqlDataAdapter da = new SqlDataAdapter(cmd);
DataTable dt = new DataTable();
cnn.ConnectionString = path;
cmd.Connection = cnn;
da.SelectCommand = cmd;
cnn.Open();
if (txtjostojo.Text != "")
{
cmd.CommandText = "Select * from tblTelephon WHERE name =@name";
cmd.Parameters.AddWithValue("@name", txtjostojo.Text);
}
da.SelectCommand = cmd;
da.Fill(dt);
dataGridView1.DataSource = dt;
groupBox1.Enabled = true;
txtname.Text = dt.Rows[0][1].ToString();
txtfamily.Text=dt.Rows[0][2].ToString();
txtcity.Text = dt.Rows[0][3].ToString();
txtmaile.Text = dt.Rows[0][4].ToString();
txtcode.Text = dt.Rows[0][5].ToString();
txtmobile.Text = dt.Rows[0][6].ToString();
txtphpne.Text = dt.Rows[0][7].ToString();
cnn.Close();
من یک برنامه دفترچه تلفن نوشتم ولی در اتصالش به دیتابیس دچار مشکل شدم کمک فوری باید پروژه را همین امشب تحویل بدم با تشکر . کد مورد نظر :
namespace Telephonbook
{
public partial class frmedite : Form
{
public string path = "Data Source=HOSPITAL-AS;Initial Catalog=Telephonbookdb;Persist Security Info=True;User ID=za;Password=1263";
public frmedite()
{
InitializeComponent();
}
private void btnjostojo_Click(object sender, EventArgs e)
{
SqlConnection cnn = new SqlConnection(path);
SqlCommand cmd = new SqlCommand("Select * from tblTelephon", cnn);
SqlDataAdapter da = new SqlDataAdapter(cmd);
DataTable dt = new DataTable();
cnn.ConnectionString = path;
cmd.Connection = cnn;
da.SelectCommand = cmd;
cnn.Open();
if (txtjostojo.Text != "")
{
cmd.CommandText = "Select * from tblTelephon WHERE name =@name";
cmd.Parameters.AddWithValue("@name", txtjostojo.Text);
}
da.SelectCommand = cmd;
da.Fill(dt);
dataGridView1.DataSource = dt;
groupBox1.Enabled = true;
txtname.Text = dt.Rows[0][1].ToString();
txtfamily.Text=dt.Rows[0][2].ToString();
txtcity.Text = dt.Rows[0][3].ToString();
txtmaile.Text = dt.Rows[0][4].ToString();
txtcode.Text = dt.Rows[0][5].ToString();
txtmobile.Text = dt.Rows[0][6].ToString();
txtphpne.Text = dt.Rows[0][7].ToString();
cnn.Close();