I have a function which is:
Public Shared Function GetTheAttachmentLink(ByVal LetterID As String, SourceIndx As Integer) As String
.
.
.
End Function
I want to write a SQL statement to update table field [LocalAttachPath]. The new value is the vlue returned by the function GetTheAttachmentLink. The function parameters: LetterID is the [LetterID] field, and the SourceIndx is the [Source] field.
So what will be the correct SQL statement:
"UPDATE PostingsTemp_RefNoBased SET LocalAttachPath=..... "
How can I write it?
Go to the complete details ...