Enum ResultSetFileMode
- Namespace
- ItTiger.TigerQuery.Engine
- Assembly
- ItTiger.TigerQuery.dll
Selects how routed result sets map onto files.
public enum ResultSetFileMode
Fields
FilePerResultSet = 1- Treat the requested path as a base name and write one file per result set.Generated names use the stable engine coordinates
<stem>_b<batch>_e<execution>_r<result><extension>, each component one-based, invariant, and padded to at least four digits. Each file has its own header and no cross-file schema restriction applies. SingleFile = 0- Write every result set routed to a path into that one file.The first result set establishes the header and the required schema. Later result sets must have the same column count and the same column names in the same ordinal positions, compared with Ordinal; they append rows only.