This commit is contained in:
SchreiberM
2016-08-23 15:00:21 +02:00
parent 78907b4bfa
commit 05b5fffc29
6 changed files with 19 additions and 20 deletions

View File

@@ -106,7 +106,7 @@
Return InsertValue(ControlID, RecordID, Value)
Else
SQL = String.Format("UPDATE TBPMO_CONTROL_VALUE SET VALUE = '{0}',CHANGED_WHO = '{1}' WHERE CONTROL_ID = {2} AND RECORD_ID = {3}", Value, Environment.UserName, ControlID, RecordID)
If ClassDatabase.Execute_non_Query(SQL) = True Then
If ClassDatabase.Execute_non_Query(SQL, True) = True Then
Return True
Else : Return False
End If