recordset

  1. R

    Android Code Snippet Group and count Recordset (or list or array etc.)

    Needed a fast way to take a recordset and group and count a specified column, so that is get the unique items of that column and count the occurrences of all those unique items. This the best I could come up with: Sub GroupAndCountRS(RS1 As ResultSet, iColumn As Int) As Map Dim i As Int Dim...
Top