I'm having issues on reading in large amounts of data (about 713,162 KB) into a dataset. When I try to it takes a really long time to load, and i get an out of memory exception. Is there better way to view large datasets offline? This data is sales data thus the size.
cheers,
Code:
'gl vars
Private dSet As New DataSet
'save button
dSet.WriteXml("c:\offline.xml")
...
'load button
dSet.ReadXml("c:\offline.xml")
MsgBox("done")
Me.UlGrid1.DataSource = dSet
Me.UlGrid1.DataBind()
cheers,