Skip to content

Commit

Permalink
Update SQLHelperFunctions.bas
Browse files Browse the repository at this point in the history
  • Loading branch information
Beakerboy committed Jan 26, 2024
1 parent 8c1b88c commit a6a5a3c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Modules/SQLHelperFunctions.bas
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ 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 a6a5a3c

Please sign in to comment.