Get table column Name : Table Column « Database ADO.net « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Development
8.Event
9.File Directory
10.Generics
11.GUI
12.Language Basics
13.LINQ
14.Network Remote
15.Security
16.Thread
17.Windows Presentation Foundation
18.Windows System
19.XML
20.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » Database ADO.net » Table ColumnScreenshots 
Get table column Name
Get table column Name

Imports System
Imports System.Collections
Imports System.Data
Imports System.IO
Imports System.Xml.Serialization
Imports System.Windows.Forms
Imports System.Data.SqlClient


Public Class MainClass
    Shared Dim WithEvents con As SqlConnection

    Shared Sub Main()
        con = New SqlConnection("Server=(local)\SQLEXPRESS;Initial Catalog=MyDatabase;Integrated Security=SSPI"

        Dim str As String = "SELECT ID, FirstName, LastName FROM Employee"
        Dim cmd As New SqlCommand(str, con)

        Dim da As New SqlDataAdapter(cmd)

        Dim ds As New DataSet()

        da.Fill(ds, "Employee")

        ' Display the column names
        Dim dc As DataColumn
        For Each dc In ds.Tables(0).Columns
            Console.Write("{0,15}", dc.ColumnName)
        Next

        ' Add a newline after the column headings
        Console.Write(vbCrLf)

        ' Display the data for each row. Loop through the rows first.
        Dim dr As DataRow
        For Each dr In ds.Tables(0).Rows

            ' Then loop through the columns for the current row.
            Dim As Integer
            For i = To ds.Tables(0).Columns.Count
                Console.Write("{0,15}", dr(i - 1))
            Next i

            ' Add a line break after every row
            Console.Write(vbCrLf)
        Next
    End Sub
End Class
           
       
Related examples in the same category
1.Get Colunm Data typeGet Colunm Data type
2.Read Table data by Table Column NameRead Table data by Table Column Name
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.