Jobs: Fix typo

This commit is contained in:
Jonathan Jenne 2022-11-25 10:56:07 +01:00
parent 5c4b302aa7
commit 7d86d583de

View File

@ -208,7 +208,7 @@ Public Class GraphQLJob
End Function
Private Function UpdateWithStatus(pQuery As Query, pStatus As Integer)
Dim oResetSQL = $"UPDATE {pQuery.DestinationTable} SET STATUS = {pStatus} WHERE ADDED_WHERY_ID = '{pQuery.Id}'"
Dim oResetSQL = $"UPDATE {pQuery.DestinationTable} SET STATUS = {pStatus} WHERE ADDED_QUERY_ID = '{pQuery.Id}'"
Return _MSSQL.ExecuteNonQuery(oResetSQL)
End Function