1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
''' <summary>
''' Correction d'un auteur
''' </summary>
''' <param name="cAutOld">ancien nom d'auteur</param>
''' <param name="cAutNew">Nouveau nom d'auteur</param>
Function UpdateAuteur(ByVal cAutOld As String, ByVal cAutNew As String) As Integer
Try
Dim oQuerryResult = From oTblAuteurs In oScanDataContext.TblAuteurs _
Where oTblAuteurs.Auteur = cAutOld _
Select oTblAuteurs
For Each qAut In oQuerryResult
qAut.Auteur = cAutNew
Next
Try
oScanDataContext.SubmitChanges(ConflictMode.ContinueOnConflict)
Return 1
Catch ex As Exception
MsgBox(ex.Message, MsgBoxStyle.Critical, My.Settings.pAppEnteteBox)
Return 0
End Try
Catch ex As Exception
MsgBox(ex.Message, MsgBoxStyle.Critical, My.Settings.pAppEnteteBox)
Return 0
End Try
End Function |
Partager