Click or drag to resize

LinkarClientRead Method

Linkar Framework for .NET and Core


Reads one or several records of a file in synchronous way.

Namespace: Linkar.Functions.Persistent
Assembly: Linkar.Functions.Persistent (in Linkar.Functions.Persistent.dll) Version: 2.3.1
Syntax
public string Read(
	string filename,
	string recordIds,
	string dictionaries = "",
	ReadOptions readOptions = null,
	DATAFORMAT_TYPE inputFormat = DATAFORMAT_TYPE.MV,
	DATAFORMATCRU_TYPE outputFormat = DATAFORMATCRU_TYPE.MV,
	string customVars = "",
	int receiveTimeout = 0
)

Parameters

filename  String
File name to read.
recordIds  String
A list of item IDs to read, separated by the Record Separator character (30). Use StringFunctions.ComposeRecordIds to compose this string
dictionaries  String  (Optional)
List of dictionaries to read, separated by space. If this list is not set, all fields are returned. You may use the format LKFLDx where x is the attribute number.
readOptions  ReadOptions  (Optional)
Object that defines the different reading options of the Function: Calculated, dictClause, conversion, formatSpec, originalRecords.
inputFormat  DATAFORMAT_TYPE  (Optional)
Indicates in what format you wish to send the record ids: MV, XML or JSON.
outputFormat  DATAFORMATCRU_TYPE  (Optional)
Indicates in what format you want to receive the data resulting from the Read, New, Update and Select operations: MV, XML, XML_DICT, XML_SCH, JSON, JSON_DICT or JSON_SCH.
customVars  String  (Optional)
Free text sent to the database allows management of additional behaviours in SUB.LK.MAIN.CONTROL.CUSTOM, which is called when this parameter is set.
receiveTimeout  Int32  (Optional)
Maximum time in seconds that the client will wait for a response from the server. Default = 0 to wait indefinitely.

Return Value

String
The results of the operation.
See Also