UniDynArray and UniDataSet
In UniObjects for .NET , UniDynArray and UniDataSet are always associated with UniSession so they use the marks that the server is set up to use. Consequently, there is no chance of server data being misinterpreted due to the use of different marks on the client and server.
UniDynArray stores data internally in byte arrays, so it deals with binary data only, as does the server.
UniDataSet supports foreach statements. For example:
UniSession m_us=UniObjects(“xxx”, “yyy”, “localhost”, “demo”, “udcs”);
UniFile m_fl=m_us.Openfile(“Customer”);
string[] sArray={“2”, “3”, “4”};
UniDataSet m_ds=m_fl.Read(sArray);
foreach(UniRecord item in M_ds)
{
Console.WriteLine(item.ToString[]);
}