Page 1 of 1

How to read columns Item from Indexes GetSchema ?

Posted: Wed 10 May 2006 13:19
by Andrea Rocca
Dim Dtl As System.Data.DataTable
Dim Row As System.Data.DataRow
Dim Cols() As Char
Dim S as string

Dtl = mvarConnectionDB.GetSchema("Indexes")
For Each Row In Dtl.Rows

'This not work ?
Cols = CType(Row.Item("columns"), Char())

'This return System.Byte[]
S = Row.Item("columns").ToString

Next Row

Posted: Thu 11 May 2006 07:10
by Alexey
We have found the problem and now we are fixing it. Look forward to the next build.

Posted: Thu 11 May 2006 08:03
by Alexey
Use Protocol=Ver20 in the ConnectionString property for workaround.
Row.Item("columns").ToString statement will return string containing the
numbers of columns which form index.