How to safely create and dispose a DataTable in VB.NET

1 Answer

0 votes
Module Module1

    Sub Main()

        Using table As New DataTable()

            table.Columns.Add("ID", GetType(Integer))
            table.Columns.Add("Name", GetType(String))
            table.Columns.Add("Salary", GetType(Double))

            table.Rows.Add(123, "Ajax", 23492)
            table.Rows.Add(543, "Arrow", 31871)
            table.Rows.Add(876, "Axel", 16878)
            table.Rows.Add(342, "Everly", 46123)

            For Each row As DataRow In table.Rows
                For Each item As String In row.ItemArray
                    Console.Write("{0} ", item)
                Next
                Console.WriteLine()
            Next

        End Using

    End Sub

End Module

' run:
' 
' 123 Ajax 23492
' 543 Arrow 31871
' 876 Axel 16878
' 342 Everly 46123

 



answered Sep 29, 2018 by avibootz

Related questions

1 answer 201 views
1 answer 184 views
1 answer 184 views
1 answer 153 views
1 answer 202 views
1 answer 141 views
1 answer 224 views
...