icemonster
Registered User.
- Local time
- Today, 13:37
- Joined
- Jan 30, 2010
- Messages
- 502
so yeah, this may sound silly to some but how would you split the lines for this mysql statement?
thanks guys
Code:
strSQL = "UPDATE tbl_student SET " & _
"student_lastname = '" & Me.txtlastname & "', student_firstname = '" & Me.txtfirstname & "', student_gender = '" & Me.cbogender & "', student_birthdate = '" & Me.dtdobconv & "', student_ethnicity = '" & Me.cboethnicity & "', student_ssn = '" & Me.txtssn & "' " & _
"WHERE id_student = " & Me.txtstudentid & ";" '
.Execute strSQL, , adCmdText + adExecuteNoRecords
thanks guys