SSAS Articles AMO Code : utility code for converting cellset to a data table
Code : utility code for converting cellset to a data table
User Rating: / 0
PoorBest 
Written by Ajit Singh   
Tuesday, 27 May 2008 23:31

Code : utility code for converting cellset to a data table

Private Function getDataTable(ByVal cs As AdomdClient.CellSet) As DataTable
        'design the datatable
        Dim dt As New DataTable
        Dim dc As DataColumn
        Dim dr As DataRow

Read more...