vote up 0 vote down star
1

I am trying to read data from excel files using datatable.

The command "select * from [Sheet1$]" works fine but if the excel file has sheet with different name it gives error.

So now I need know how can I find the table names available in a schema using ADO.Net.

flag

75% accept rate

1 Answer

vote up 0 vote down check

Following Function will return the table name at the given position(eg, excel sheet) or return blank

Private Function GetTableName(ByVal ConnectionString As String, ByVal TableNumber As Integer) As String
    Dim i As Integer
    Dim dtXlsSchema As DataTable
    Dim myConn As New OleDbConnection
    myConn.ConnectionString = ConnectionString
    myConn.Open()
    dtXlsSchema = myConn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, _
                      New Object() {Nothing, Nothing, Nothing, "TABLE"})


    If TableNumber > dtXlsSchema.Rows.Count Then
        Return ""
    Else
        Return dtXlsSchema.Rows(TableNumber - 1).Item("Table_Name").ToString
    End If
End Function
link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.