The XLS protocol handler parses and writes Excel-compatible spreadsheets.

Options

Example

PQL

input = ACCESS({source='XLS', wrapper='GenericPush',
transport='File',protocol='XLS',
  dataHandler='Tuple',options=[['readfirstline','true'],['delay','100']],
  schema=[
    ['symbol','String'],
    ['points','Double'] ]
})

CQL

CREATE STREAM xls (symbol String, points Double)   
    WRAPPER 'GenericPush'
    PROTOCOL 'XLS'
    TRANSPORT 'File'
    DATAHANDLER 'Tuple'
    OPTIONS ( 'readfirstline' 'true', 'delay' '100')