This commit is contained in:
SchreiberM
2017-01-04 17:09:26 +01:00
128 changed files with 17813 additions and 20419 deletions

View File

@@ -41,7 +41,6 @@
cmd.Parameters.Add("@GUID", SqlDbType.Int).Value = guid
conn.Open()
'ClassDatabase.Execute_non_Query(SQL, True)
cmd.ExecuteNonQuery()
conn.Close()
@@ -99,7 +98,7 @@
Dim column = e.Column.FieldName
Dim id = gvMainView.GetFocusedRowCellValue(gvMainView.Columns("GUID"))
Dim sql = String.Format("UPDATE TBPMO_FORM_CONSTRUCTOR SET {0} = '{1}',CHANGED_WHO = '{2}',LANGUAGE = '{3}' where GUID = {4}", column, e.Value, USER_USERNAME, USER_LANGUAGE, id)
If ClassDatabase.Execute_non_Query(sql) = False Then
If ClassDatabase.Execute_non_Query(sql, False) = False Then
MsgBox("Update Value not successfull. Check logfile", MsgBoxStyle.Critical)
End If