|
|
|
อยากถามเรื่อง C# กับ Mysql (ภาษาไทย Thai) หน่อยครับ คือผมเขียน application ติดต่อกับ Mysql จะทำยังไงครับ ตอนผม select ข้อมูล |
|
|
|
|
|
|
|
web.config ครับ
|
|
|
|
|
Date :
2009-05-19 16:50:34 |
By :
Gg |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2009-05-19 16:51:43 |
By :
Gg |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2009-05-19 17:25:46 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณ คุณ MR.WIN มากมายครับ
|
|
|
|
|
Date :
2009-07-13 15:24:49 |
By :
portgasdace |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
thank. for your help.
|
|
|
|
|
Date :
2010-03-22 10:04:35 |
By :
john cracker |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รบกวนช่วยทีครับ c# + mysql 5 odbc 3.51 update ข้อมูลจาก textbox ลง mysql คืน ไม่ได้ครับ มันฟ้อง ว่ารหัสที่ป้อนไม่ถูกต้องครับ
[Code (C#)[/head]
private void tseditTaxs_Click(object sender, EventArgs e)
{
if (MessageBox.Show("คุณต้องการแก้ไขข้อมูล ใช่หรือไม่?", "ยืนยันข้อมูล", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == System.Windows.Forms.DialogResult.Yes)
{
tr = Conn.BeginTransaction();
try
{
sb = new StringBuilder();
sb.Remove(0, sb.Length);
sb.Append("update company");
sb.Append(" set CompName=@CompName);
sb.Append(" CompAddr=@CompAddr);
sb.Append(" CompTel=@compTel);
sb.Append(" CompFax=@CompFax);
sb.Append(" CompTaxno=@CmpTaxno);
sb.Append(" where (CompID=@CompID)");
string sqlEdit;
sqlEdit = sb.ToString();
com.CommandText = sqlEdit;
com.CommandType = CommandType.Text;
com.Connection = Conn;
com.Transaction = tr;
com.Parameters.Clear();
com.Parameters.Add("@CompID",OdbcType.VarChar).Value = txtCompcode.Text.Trim();
com.Parameters.Add("@CompName",OdbcType.VarChar).Value = txtCompname.Text.Trim();
com.Parameters.Add("@CompAddr",OdbcType.VarChar).Value = txtCompaddr.Text.Trim();
com.Parameters.Add("@CompTel",OdbcType.VarChar).Value = txtComptelephon.Text.Trim();
com.Parameters.Add("@CompFax",OdbcType.VarChar).Value = txtCompfax.Text.Trim();
com.Parameters.Add("@CompTaxno",OdbcType.VarChar).Value = txtComptaxno.Text.Trim();
int result;
result = com.ExecuteNonQuery();
if (result == 0)
{
tr.Rollback();
MessageBox.Show("รหัสที่คุณป้อน ไม่ถูกต้อง !", "ผลการทำงาน", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
txtCompcode.Focus();
}
else
{
com.ExecuteNonQuery();
tr.Commit();
MessageBox.Show("คุณแก้ไขข้อมูลเรียบร้อยแล้ว", "ผลการทำงาน", MessageBoxButtons.OK, MessageBoxIcon.Information);
ClearAllData();
ShowData();
FormatdgvComplist();
}
}
catch (Exception ex)
{
tr.Rollback();
MessageBox.Show("เกิดข้อผิดพลาด เนื่องจาก" + ex.Message, "ผลการทำงาน", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
txtCompcode.Focus();
}
|
|
|
|
|
Date :
2010-11-10 12:51:45 |
By :
วรพล |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ ปัญหาเดียวกันเลยย
|
|
|
|
|
Date :
2010-11-11 06:25:18 |
By :
voozar |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|