|
|
|
ช่วยแนะนำหน่อยค่ะ _/\_ติดปัญหาว่า จะ insert รหัสเข้า testbox แล้วให้เช็คว่ารหัสที่ insert เข้า textbox นั้นมีในระบบ และซ้ำหรือไม่ |
|
|
|
|
|
|
|
Code (C#)
private void tbInId_KeyPress(object sender, KeyPressEventArgs e)
{
try
{
string text1 = tbInId.Text;
if (text1.Length == 7)
{
e.Handled = true;
IDIn = text1;
string carin = DateTime.Now.ToString();
string carinformat = RetrurnDate(carin);
string carinforuse = Convert.ToDateTime(carinformat).ToString("yyyy/MM/dd HH:mm:ss");
string con = contocarpark.con;
SqlConnection Conn = new SqlConnection(con);
Conn.Open();
string sql = "INSERT INTO DAILY_LOG_PARK(QUEUE_NO) SELECT QUEUE_NO FROM DAILY_LOG_CARD WHERE QUEUE_NO = '" + tbInId.Text + "'";
SqlCommand cmd = new SqlCommand(sql, Conn);
cmd.Parameters.AddWithValue("QUEUE_NO", tbInId.Text);
cmd.ExecuteNonQuery();
Conn.Close();
tbInId.Text = "";
Showdata();
tbInId.Focus();
MessageBox.Show("Save Successfully");
}
else
{
}
}
catch (Exception)
{
MessageBox.Show("เกิดข้อผิดพลาดติดต่อผู้ดูแลระบบด่วน!", "รหัสผิดพลาด", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
ทำแล้วมันไม่บันทึกให้ค่ะ
|
|
|
|
|
Date :
2013-01-01 23:58:18 |
By :
kainoi927 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Query กับ Parameter มันแปลก ๆ น่ะครับ
Code (C#)
//*** Insert to Database ***'
SqlConnection objConn = new SqlConnection();
string strConnString = null;
string strSQL = null;
strConnString = "Server=localhost;UID=sa;PASSWORD=;database=mydatabase;Max Pool Size=400;Connect Timeout=600;";
strSQL = "INSERT INTO files (Name,FilesName,FilesType) VALUES (@sName,@sFilesName,@sFilesType)";
objConn.ConnectionString = strConnString;
objConn.Open();
SqlCommand objCmd = new SqlCommand(strSQL, objConn);
objCmd.Parameters.Add("@sName", SqlDbType.Binary).Value = this.txtName.Text;
objCmd.Parameters.Add("@sFilesName", SqlDbType.VarChar).Value = imbByte;
objCmd.Parameters.Add("@sFilesType", SqlDbType.Int).Value = strMIME;
objCmd.ExecuteNonQuery();
objConn.Close();
objConn = null;
|
|
|
|
|
Date :
2013-01-03 06:07:34 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุงค่ะ ^____^
|
|
|
|
|
Date :
2013-01-03 10:29:19 |
By :
kainoi927 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|