hi
i have this query:
SQL = "select A,B,C from MyTbl";
adp = new OracleDataAdapter(SQL, Conn);
dsView = new DataSet();
adp.Fill(dsView, "MyTbl");
dataGridView15.DataSource = dsView.Tables["MyTbl"].DefaultView;
in the dataGridView15 the fileds Arranged in this order:
A
B
C
but when i run my program i see my table like this: A | C | B