Last active
August 29, 2015 14:17
-
-
Save jeffgabhart/d460cfc3d3eaaed28ac3 to your computer and use it in GitHub Desktop.
Visual Basic 6 Recordset Dump
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'Change myRecordset to the recordset you want to dump | |
| 'Paste into Immediate | |
| Set rec = myRecordset.Clone: rec.MoveFirst: Do Until rec.EOF: For Each f In rec.Fields: Debug.Print f.Name & " [" & f.Type & "](" & f.DefinedSize & "): " & f.Value: Next: Debug.Print "": rec.MoveNext: Loop: Set rec = Nothing |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment