Search results for query: *

  1. M

    Question Getting secondary indexes of an Access Table through GetOleDbSchemaGuid.

    Hello. (Thanks jmcilhinney, but dbInfoLiterals was a mistake). I put next code SchemaTable = cn.GetOleDbSchemaTable(System.Data.OleDb.OleDbSchemaGuid.Indexes, New String() {Nothing, Nothing, "TPF30CLI"}) For RowCount = 0 To SchemaTable.Rows.Count - 1...
  2. M

    Question Getting secondary indexes of an Access Table through GetOleDbSchemaGuid.

    Hi. I want to find the secondary indexes of an Access Table. To obtain the fields of Primary key, I write next code. Dim cn As New OleDbConnection() Dim schemaTable As DataTable Dim i As Integer Dim sBD as String = "C:\MMBNet\Data2\Pe1.mdb" Dim sConex as...
Back
Top