Skip to content

Commit

Permalink
Added support for millisecond component when writing date/time. Closes
Browse files Browse the repository at this point in the history
  • Loading branch information
hisystems committed Apr 1, 2012
1 parent 4600a4c commit 75ced7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SQL/Misc.vb
Expand Up @@ -103,7 +103,7 @@ Namespace SQL
End If

If dtDate.Hour <> 0 Or dtDate.Minute <> 0 Or dtDate.Second <> 0 Then
strDate &= " " & dtDate.Hour & ":" & dtDate.Minute & ":" & dtDate.Second
strDate &= " " & dtDate.Hour & ":" & dtDate.Minute & ":" & dtDate.Second & "." & dtDate.Millisecond
End If

Select Case eConnectionType
Expand Down

0 comments on commit 75ced7d

Please sign in to comment.