ต้องการให้เวลาบันทึก ให้บันทึก id ในฟิว ProfileID โดยอัตโนมัตอ่คะ แล้วก็ฟิว PID ดึงรหัสหรือ PK จากตา
ต้องการให้เวลาบันทึก ให้บันทึก id ในฟิว ProfileID โดยอัตโนมัตอ่คะ แล้วก็ฟิว PID ดึงรหัสหรือ PK จากตาราง history ที่บันทึกล่าสุด มาบันทึกในฟิว PID ของตาราง Profile โดยอัตโนมัติทำไงคะ
นี่เป็นโค๊ดที่ลองทำ ก็บันทึกไม่ได้ค่ะ มันขึ้นว่า Canot insert explicit value for identity culumn in table'PROFILES' when identity_insert is set to off.
If rdoNew_t2.Checked = False And rdoMove_t2.Checked = False Or _
ComboPrison_t2.Text.Trim() = "" Or txtBlame_t2.Text.Trim() = "" Or txtTall_t2.Text.Trim() = "" Or _
txtWeight_t2.Text.Trim() = "" Or _
ComboDepartment_t2.Text.Trim() = "" Or _
ComboPart_t2.Text.Trim() = "" Or _
ComboArea_t2.Text.Trim() = "" Then
MessageBox.Show("กรุณาป้อนข้อมูลให้ครบก่อน !!!", "ผลการตรวจสอบ", MessageBoxButtons.OK, MessageBoxIcon.Exclamation)
txtBlame_t2.Focus()
Exit Sub
End If
com = New SqlCommand
Try
Dim sqlProfile As String = ""
sqlProfile = "INSERT INTO PROFILES (ProfileID,PrisonID,Blame,Tall,Weight,DepartID,PartID,AreaID,PID,rdoNewMove )"
sqlProfile &= " VALUES ('" & tmpMemberID & "', "
sqlProfile &= "'" & CStr(ComboPrison_t2.SelectedValue) & "',"
sqlProfile &= "'" & (txtBlame_t2.Text.Trim) & "',"
sqlProfile &= "'" & (txtTall_t2.Text.Trim) & "',"
sqlProfile &= "'" & (txtWeight_t2.Text.Trim) & "',"
sqlProfile &= "'" & CStr(ComboDepartment_t2.SelectedValue) & "',"
sqlProfile &= "'" & CStr(ComboPart_t2.SelectedValue) & "',"
sqlProfile &= "'" & CStr(ComboArea_t2.SelectedValue) & "',"
sqlProfile &= "'" & (FormAdd.txtPid.Text.Trim) & "',"
If rdoNew_t2.Checked = True Then
sqlProfile &= "'รับตัวใหม่')"
ElseIf rdoMove_t2.Checked = True Then
sqlProfile &= "'ย้ายมาจากเรือนจำอื่น')"
End If
With Conn 'เริ่มต้นเชื่อมต่อกับฐานข้อมูล
If .State = ConnectionState.Open Then .Close()
.ConnectionString = strConn
.Open() 'เชื่อมต่อกับฐานข้อมูล
End With
com = New SqlCommand
With com
.CommandType = CommandType.Text
.CommandText = sqlProfile
.Connection = Conn
.ExecuteNonQuery() 'รันชุดคำสั่ง SQL
End With
MessageBox.Show("เพิ่มข้อมูล เรียบร้อยแล้ว !!!", "ผลการทำงาน", MessageBoxButtons.OK, MessageBoxIcon.Information)
tmpMemberID = tmpMemberID + 1
FormRelation.ShowDialog()
Catch ex As Exception
MessageBox.Show("เกิดข้อผิดพลาดเนื่องจาก " & ex.Message, "ผลการทำงาน", MessageBoxButtons.OK, MessageBoxIcon.Information)
End TryTag : - - - -
Date :
2010-06-09 22:55:44
By :
jdai
View :
1425
Reply :
10
ถามกลับ นะครับ ฐานข้อมุล อะไร
Date :
2010-06-10 13:07:15
By :
ทีม
พอจะเข้าใจลางๆแล้วค่ะ แต่ขอคำอธิบายที่เรียบเงียงให้เข้าใจง่ายกว่านี้ได้ปะคะ
และฐานข้อมูลอะไร table ที่เกี่ยวข้อง structure ยังไง มี pk ,constraint อะไรบ้าง
Date :
2010-06-10 14:27:51
By :
blurEyes
ฐานข้อมูล sql server ค่ะ
ตารางที่เกี่ยวข้องมี สอง ตารางค่ะ คือตาราง Profile และ history ตาราง history มีฟิว PID เป็น pk
แล้วทีนี้ตาราง Profile ฟิวดังนี้ คือ ProfileID,PrisonID,Blame,Tall,Weight,DepartID,PartID,AreaID,PID,rdoNewMove
ProfileID เป็น pk และต้องการให้เวลาบันทึกให้มีรหัสในฟิวนี้อัตโนมัติอ่าค่ะ และฟิว PID ก็ให้มีรหัสในฟิวนี้อัตโนมัติเหมือนกันค่ะ แต่ฟิว PID ให้ดึงมาจาก PK ตาราง history ที่บันทึกครั้งล่าสุดอ่ะคะ
ส่วนที่บอกว่า ProfileID กำหนดเป็น auto increament กำหนดไปแล้ว แต่เวลา codding ต้องเขียนแบบนี้รึป่าวคะ คือ insert into (PrisonID,Blame,Tall,Weight,DepartID,PartID,AreaID,PID,rdoNewMove) คือตัด ProfileID ออกไปเลยหรอคะ
ส่วน PID ที่บอกว่า ให้ select max(PK) from history แล้วเอามา insert ใน PID ของ Profile codding ต้องเป็นแบบใหนคะ หนูลองทำแบบนี้แล้วมันไม่ได้อ่าค่ะ มันฟ้องว่า conversion string "select max(pk) from history" to type'integer' is not valid //หนูไม่แน่ใจว่า max(pk) ต้องใส่เป็น max(PID) หรือ max(pk) ]ลองทั้งสองอย่างแล้ว ฟ้องเหมือนกันค่ะ ช่วยทีนะคะ
Dim sqlProfile As String = ""
'SELECT max(fieldname) from Tablename
Dim sqlselect As String = "SELECT MAX(PK) FROM HISTORY"
sqlProfile = "INSERT INTO PROFILES (PrisonID,Blame,Tall,Weight,DepartID,PartID,AreaID,PID ,rdoNewMove)"
sqlProfile &= " VALUES ('" & CStr(ComboPrison_t2.SelectedValue) & "', "
'sqlProfile &= "'" & CStr(ComboPrison_t2.SelectedValue) & "',"
sqlProfile &= "'" & (txtBlame_t2.Text.Trim) & "',"
sqlProfile &= "'" & (txtTall_t2.Text.Trim) & "',"
sqlProfile &= "'" & (txtWeight_t2.Text.Trim) & "',"
sqlProfile &= "'" & CStr(ComboDepartment_t2.SelectedValue) & "',"
sqlProfile &= "'" & CStr(ComboPart_t2.SelectedValue) & "',"
sqlProfile &= "'" & CStr(ComboArea_t2.SelectedValue) & "',"
sqlProfile &= "'" & CInt(sqlselect) & "',"
If rdoNew_t2.Checked = True Then
sqlProfile &= "'รับตัวใหม่')"
ElseIf rdoMove_t2.Checked = True Then
sqlProfile &= "'ย้ายมาจากเรือนจำอื่น')"
End If
Date :
2010-06-12 22:17:22
By :
donut
HISTORY.PID >> ให้ SET TYPE เป็น INT และ AUTO INCRESEMENT ค่ะ
หลังจากที่ INSERT HISTORY ไปแล้ว
ค่อยมา INSERT PROFILE ค่ะ
ส่วน SQL เขียนแบบนี้
INSERT HISTORY ....
'AFTER THAT
Code (VB.NET)
Dim varPrisonID As String = CStr(ComboPrison_t2.SelectedValue)
Dim varBlame As String = txtBlame_t2.Text.Trim()
Dim varTall As String = txtTall_t2.Text.Trim()
Dim varWeight As String = txtWeight_t2.Text.Trim()
Dim varDepartID As String = CStr(ComboDepartment_t2.SelectedValue)
Dim varPartID As String = CStr(ComboPart_t2.SelectedValue)
Dim varAreaID As String = CStr(ComboArea_t2.SelectedValue)
Dim varRdoNewMove As String = String.Empty
If rdoNew_t2.Checked = True Then
varRdoNewMove = "รับตัวใหม่"
ElseIf rdoMove_t2.Checked = True Then
varRdoNewMove = "ย้ายมาจากเรือนจำอื่น"
End If
DIM SqlCommandTextBuilder AS System.Text.StringBuilder = New System.Text.StringBuilder()
SqlCommandTextBuilder.AppendLine("DECLARE @MAX_ID AS INT ;")
SqlCommandTextBuilder.AppendLine("SELECT @MAX_ID=ISNULL(MAX(PID),-1) FROM HISTORY;")
SqlCommandTextBuilder.AppendLine("INSERT INTO PROFILES ")
SqlCommandTextBuilder.AppendLine(" ( PrisonID, Blame, Tall ,Weight " )
SqlCommandTextBuilder.AppendLine(" ,DepartID, PartID, AreaID, PID, rdoNewMove) " )
SqlCommandTextBuilder.AppendLine("VALUES ")
SqlCommandTextBuilder.AppendLine(" ( @VarPrisonID, @VarBlame, @VarTall ,@VarWeight " )
SqlCommandTextBuilder.AppendLine(" ,@VarDepartID, @VarPartID, @VarAreaID " )
SqlCommandTextBuilder.AppendLine(" ,@MAX_ID, @VarrdoNewMove); " )
Dim cmdStr As String = SqlCommandTextBuilder.ToString()
Dim cmd As SqlCommand = New SqlCommand ( cmdStr , xConnection )
'xConnection ก็ Connection ของคุณนะคะ
'ไม่ต้อง Add parameter @MAX_ID เพราะเป็นตัวแปรภายใน T-SQL
cmd.Parameters.AddWithValue("@VarPrisonID" ,varPrisonID )
cmd.Parameters.AddWithValue("@VarBlame" ,varBlame)
cmd.Parameters.AddWithValue("@VarTall" ,varTall )
cmd.Parameters.AddWithValue("@VarWeight" ,varWeight )
cmd.Parameters.AddWithValue("@VarDepartID" ,varDepartID)
cmd.Parameters.AddWithValue("@VarPartID" ,varPartID)
cmd.Parameters.AddWithValue("@VarAreaID" ,varAreaID )
cmd.Parameters.AddWithValue("@VarrdoNewMove" ,varRdoNewMove )
==================================================
เห็นสารพัดเครื่องหมาย ' และ " ของคุณแล้วละลานตาค่ะ
ขอเปลี่ยนแกมบังคับให้ไปใช้ sqlCommandParameter แทนแล้วกัน
ลองไปอ่านวิธีใช้เพิ่มเติมนะคะ
varRdoNewMove
แนะนำให้ย้ายออกไปอีก table นึงค่ะ
เพื่อสะดวกในการเพิ่มขยายในอนาคต
จะเรียกว่า normalize ก็ได้ แล้วเรียกผ่าน ID มาอีกทีค่ะ
Date :
2010-06-13 02:29:51
By :
blurEyes
จะมองอะไรก็มองเถอะ -_-"
แต่ที่แน่ๆ เจอผู้หญิงอกใหญ่ๆ ผมมองนม
Date :
2010-06-13 10:00:24
By :
tungman
ระวังนมจะทิ่มตาเอาสักวันค่ะ
Date :
2010-06-13 10:23:46
By :
blurEyes
ขอบคุนค่ะ เด๋วไปลองทำดู
Date :
2010-06-13 11:47:57
By :
jdai
ขอบคุนค่ะ เด๋วลองก่อนนะคะ
Date :
2010-06-13 11:56:15
By :
donut
ขอบคุนมากค่ะ ขอบคุนมากๆๆ ติดมาตั้งหลายวัน เด๋วมีไรขอมารบกวนไหม่นะคะ
Date :
2010-06-13 12:46:44
By :
donut
Load balance : Server 01