DB Tools Load Recordset From File VI
- Updated2023-02-21
- 2 minute(s) read
DB Tools Load Recordset From File VI
Owning Palette: Utility VIs
Requires: Database Connectivity Toolkit
Loads a recordset from a file and returns a recordset reference that identifies this recordset. You can retrieve data from this recordset like any other recordset, but some properties might not be available on this recordset.
![]() |
connection reference specifies a reference to an ADO Connection object. |
![]() |
file name specifies the file path to the file from which you want to read the data. |
![]() |
cache size determines how many records to store in local memory. After the number of records kept in local memory are visited and the next record is requested, the current set of records are discarded from local memory, and the next set are retrieved into local memory. The default is 1. Adjusting this setting might improve performance when fetching records. |
![]() |
error in describes error conditions that occur before this node runs. This input provides standard error in functionality. |
![]() |
recordset reference returns a reference to an ADO Recordset object. |
![]() |
error out contains error information. This output provides standard error out functionality. |