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
			
									
									
						How to read columns Item from Indexes GetSchema ?
- 
				Andrea Rocca
- Posts: 5
- Joined: Fri 10 Mar 2006 15:50