I ran into this code today:
I'm wondering, what other schema names can I supply to GetSchema in the above example, for MS-Access?Code:Dim sConn As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\english.mdb" Dim olecon As New OleDbConnection(sConn) olecon.Open() Dim dt As DataTable = olecon.GetSchema("tables") olecon.Close() GridView1.DataSource = dt GridView1.DataBind()