How to read columns Item from Indexes GetSchema ?
Posted: Wed 10 May 2006 13:19
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
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