policechiefwiggum
Programmer
Hi All,
Please help!
my Update query is failing:
the query is quite long, and i'm guessing its just a problem with my code somewhere, but i'm self taught in SQL / VBA, so dont know what or where to look for the problem!
Ok, this is the SQL command
i've Dim'd all the form elements like so:
(Obviously theres a lot more!)
when i click on my "submit" button i'm getting a debug error:
Please help!
my Update query is failing:
the query is quite long, and i'm guessing its just a problem with my code somewhere, but i'm self taught in SQL / VBA, so dont know what or where to look for the problem!
Ok, this is the SQL command
Code:
UpdateProjectSQL = " UPDATE [projects] SET [UATID] = '" & uatproject & "', [PACode] = '" & PACode & "', [OnTrack] = '" & ontrack & "', [OneView] = '" & oneview & "', [Status] = '" & proj_status & _
"', [Rag] = '" & project_rag & "', [PM] = '" & projectmanger & "', [TPM] = '" & tech_proj_manager & "', [TM] = '" & test_mamanger & "', [UATTester] = '" & assign_res & "', [SuppRes] = '" & _
add_uat & "', [LaunchDate] = '" & launch & "', [ScriptTarget] = '" & script_date & "', [UATStart] = '" & uat_start & ", [UATDuration] = '" & uat_dur & _
"', [UATPercent] = '" & uat_complete & "', [PITStart] = '" & pit_start & "', [PITDuration] = '" & pit_dur & "', [PITPercent] = '" & pit_complete & "', [TestPlanApprove] = '" & _
tp_complete & "', [TestPlanApprove] = '" & test_plan_approve & "', [ScriptsComplete] = '" & scripts_complete & "', [ScriptsApprove] = '" & sign_off & "', [UATStartCh] = '" & uat_st_ch & _
"', [UATComplete] = '" & uat_complete_ch & "', [PITStartCh] = '" & pit_st_ch & "', [PITComplete] = '" & pit_comp_ch & "', [ExitReport] = '" & exit_report & "', [UATSignoff] = '" & _
uat_signoff & "', [TypeofTest] = '" & type_of_test & "', [AreaofBusiness] = '" & area_of_bus & "', [NewUpdate] = '" & new_update & "', [OldUpdate] = '" & prev_update & "'"
Code:
Dim new_update As String
Dim prev_update As String
Dim pit_st_ch As String
Dim pit_comp_ch As String
If Me.uatproject.Value >= "" Then
uatproject = " = " & Me.uatproject.Value
Else
uatproject = " IsNull"
End If
If Me.pa_code.Value >= "" Then
PACode = " = " & Me.pa_code.Value
Else
pa_code = " is Null "
End If
If Me.ontrack.Value >= "" Then
ontrack = " = " & Me.ontrack.Value
Else
ontrack = " is Null "
End If
when i click on my "submit" button i'm getting a debug error: