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
Public Function PrepareFromInput(inputrecords As QueryableRecords, inputhasheader As RecordsHeaderType, ParamArray paraminput() As Variant) As QueryableRecords | |
On Error GoTo ErrHandler | |
' Input data supported: | |
' scalar value(s) | |
' arrays (single/multi dimensional) | |
' tuples (2-index) | |
' assocs (value must be scalar) | |
' lists/collections/enumerables/iterables | |
' map objects like Scripting.Dictionary (key:column name)/(value: field value or column of field values) |
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
'| file dialog's file filter data | |
' mask , name, index | |
' *.* , All , 1 | |
' *.txt, Text, 2 | |
' etc... | |
' method 1: row-based | |
' named columns: |
NewerOlder