Skip to content

Commit

Permalink
Update SQLHelperFunctions.bas
Browse files Browse the repository at this point in the history
  • Loading branch information
Beakerboy authored Jan 26, 2024
1 parent c250fe5 commit 45cb4cb
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/Modules/SQLHelperFunctions.bas
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ Public Function str(vValue) As String
str = "'" & Replace(vValue, "'", "''") & "'"
End Function

Function JoinArrayofArrays(ByVal vArray As Variant, _
Optional ByVal WordDelim As String = " ", _
Optional ByVal LineDelim As String = vbNewLine) As String
Function JoinArrayofArrays(ByVal vArray As Variant, Optional ByVal WordDelim As String = " ", Optional ByVal LineDelim As String = vbNewLine) As String
Dim R As Long, Lines() As String
ReDim Lines(0 To UBound(vArray))
For R = 0 To UBound(vArray)
Expand Down

0 comments on commit 45cb4cb

Please sign in to comment.