The following is a IBM code example for the UniDataSet:


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[]);

}



As you can see this code is on he client. My question is can and how do
you build a UniDataSet in UniBasic on the server. When you look in the
C# debugger there are more structures than you think, probably
UniDataSet properties like RecordCount.



I know someone will ask why do you want to build the UniDataSet on the
server, so in advance I just want to.



Thanks for any help.



grs
-------
u2-users mailing list
[email protected]
To unsubscribe please visit http://listserver.u2ug.org/

Reply via email to