0
我試圖將列表框中的數據列表作爲批量數據保存到sql server中,但我不知道。 這是我的代碼:如何在sql-server中的表格單元格中插入列表框數據作爲一個批量數據
cmd As New SqlClient.SqlCommand("INSERT INTO tblStudentPersonalInformation(studentregistrationumber,studentname,studentgender,studentdob,studentpicture,studentntsubjectssat,studentfamilymembers,) VALUES('" & txtStudentRegistrationNumber.Text & "','" & txtStudentName.Text & "','" & cmbStudentGender.Text & "','"
& studentdob & "','" & "',@studentpicture,'" & lbStudentSubjectsSat.Text & lbStudenttFamilyMembers.Text & "')",
databaseconnection.cn)
cmd.Parameters.Add(New SqlClient.SqlParameter("@studentpicture", SqlDbType.Image)).Value = IO.File.ReadAllBytes(openfile.FileName)
i = cmd.ExecuteNonQuery()
的科目名稱坐着和家人暫時存儲在表盒中作爲一個數據的表格單元格中插入。 但我不知道如何將整個列表框數據存儲在表格單元格中。有任何想法嗎。提前欣賞。
你想保存listbox的所有值嗎? – hdkhardik