How to display a recordset in VB.Net using ODP.Net
438494Sep 2 2005 — edited Sep 15 2005I have an Oracle table like this: select * from table_a;
id fname lname
-- ----- -----
1 SAM SMITH
2 HELLO WORLD
3 BOB JONES
I want to get the whole table into VB in an array. Then I want to display the following in the MessageBox:
second row, second column - "HELLO"
second row, third columns - "WORLD"
Could someone supply VB code to make that happen? Thanks. - Jack