|
|
|
DateTimePicker insert into ลงใน SQL ช่วยที่ครับ |
|
|
|
|
|
|
|
insert into ลงใน SQL Error Incorrect syntax near '11'. คิดว่าหน้าจะเป็นเพราะใช้ DateTimePicker ผิดไวยกรณ์ แก้ไขยังไงดีครับ
ตัวที่ใช้ DateTimePicker
1.dtpPersent datatype = datetime
2.dtpStart datatype = datetime
3.dtpEnd datatype = datetime
Database ใช้เป็น
1.dtpPersent datatype = datetime
2.dtpStart datatype = datetime
3.dtpEnd datatype = datetime
Code (C#)
SqlConnection Connection = new SqlConnection("Server=big-PC;Uid=sa;PASSWORD=2003;database=IT Service;Max Pool Size=400;Connect Timeout=600;");
Connection.Open();
SqlCommand cmd = new SqlCommand(" insert into IT_Operation( dtpPersent, txtOperation, dtpStart, dtpEnd, txtOfficer, txtManager) VALUES (" + Convert.ToDateTime(dtpPersent.Value) + ",'" + txtOperation.Text + "'," + Convert.ToDateTime(dtpStart.Value) + "," + Convert.ToDateTime(dtpEnd.Value) + ",' " + txtOfficer.Text + "',' " + txtManager.Text + "')", Connection);
cmd.ExecuteNonQuery();
Connection.Close();
MessageBox.Show("Insertion successfully done");
Tag : .NET, C#
|
|
|
|
|
|
Date :
2012-03-29 11:44:34 |
By :
prykazip69 |
View :
3390 |
Reply :
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เงียบเหงาและปราวเปรี่ยว
|
|
|
|
|
Date :
2012-03-29 20:24:19 |
By :
prykazip |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (VB.NET)
'" + Convert.ToDateTime(dtpPersent.Value) + "'
ใส่ 'xxx' ด้วยครับ
|
|
|
|
|
Date :
2012-03-29 20:34:54 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Error : The conversion of a varchar data type to a datetime data type resulted in an out-of-range value.
The statement has been terminated.
ยังไม่ได้งะครับ
|
|
|
|
|
Date :
2012-03-30 08:57:00 |
By :
prykazip69 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันก็บอกแล้วน่ะครับ DataType Format ของวันที่น่าจะไม่ถุกต้องครับ
|
|
|
|
|
Date :
2012-03-30 09:05:01 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Convert.ToDateTime(dtpEnd.Value.ToString("yyyyMMdd"))
|
|
|
|
|
Date :
2012-03-30 09:25:00 |
By :
SeedNew |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|