Skip to content

getEntry

Alexius Wadell edited this page Jan 17, 2017 · 2 revisions

Syntax

entry = dm.getEntry()

entry = dm.getEntry(Name, Value)

entry = dm.getEntry(Name, Value, Name2, Value2, ...)

entry = ds.getEntry

Description

entry = dm.getEntry() Returns an array of all datasource entries stored in the master directory


entry = dm.getEntry(Name, Value) Returns an array of all datasource entries stored in the master directory that meet the search criteria


entry = dm.getEntry(Name, Value, Name2, Value2, ...) Multiple search criteria can be specified by passing multiple Name-Value pairs one after another


entry = ds.getEntry Return the entry for datasource ds.

Output Arguments

entry is an array of structures with the following fields

Field Name Discription
Index The id of the datasource in the Master Directory table of the SQLite Database
OriginHash The combinded MD5 Hash of the LDX and LD log files used to create the datasource. The two hashes are concated as such: [LD Hash, LDX Hash]
FinalHash The SHA256 hash of the datasource's MAT file
Channel A cell array of all of the channels logged in the datasource
Detail Empty. Filled by datasource.getDetail when called internally
Datetime When the logged engine data was taken

See Also

See getDatasource for possiable Name-Value pairs

Clone this wiki locally