string SQL_C = "select Interior_id,location,location_X,location_Y from SlipSand_slope_1";
DataSet DS = new DataSet();
DS = DataOperate.DS(SQL_C);
DataGridView DGV = new DataGridView();
DGV.DataSource = DS;
dataGridView1.DataSource = DS;
這是DataSet的數據
然後DataGridView竟然是空的??這是什麼情況???
我今天做的是 DataSet ds = new DataSet();
OracleDataAdapter da = new OracleDataAdapter(cmd);
da.Fill(ds);
datagridview.DataSource = ds.Tables[0];
這樣就有數據了