2

子行からデータを取得するときにエラーが発生します。基本的に、lecturerNamefrom tbl_lecturerprojectTitlefromが必要tbl_lecturer_projectです。

これが私のコードです。

//get data from 3 tables
DataSet ds = new DataSet(); // .xsd file name
DataTable dt = new DataTable();

//Connection string replace 'databaseservername' with your db server name
SqlConnection con = new SqlConnection(connectionString);
SqlCommand cmd = new SqlCommand();
SqlDataAdapter adapter;

con.Open();

//Stored procedure calling. It is already in sample db.
string selectSQL = "SELECT * FROM tbl_allocated_project where allocatedGroupId='" + team + "'";
cmd = new SqlCommand(selectSQL, con);
ds = new DataSet();
adapter = new SqlDataAdapter(cmd);
adapter.Fill(ds, "tbl_allocated_project");

cmd.CommandText = "SELECT * FROM tbl_lecturer_project";
adapter.Fill(ds, "tbl_lecturer_project");

cmd.CommandText = "SELECT * FROM tbl_lecturer";
adapter.Fill(ds, "tbl_lecturer");

DataRelation dr1 = new DataRelation("dr1", ds.Tables["tbl_lecturer"].Columns["lecturerId"],ds.Tables["tbl_lecturer_project"].Columns["lecturerId"]);
DataRelation dr2 = new DataRelation("dr2", ds.Tables["tbl_lecturer_project"].Columns["lecturerProjectId"], ds.Tables["tbl_allocated_project"].Columns["allocatedProjectId"]);
ds.Relations.Add(dr1);
ds.Relations.Add(dr2);

foreach (DataRow row in ds.Tables["tbl_allocated_project"].Rows)
{
    lblDisplay.Text = "";
    //lblDisplay.Text += row["allocatedGroupId"];
    //lblDisplay.Text += " " + row["intro"];

    foreach (DataRow col in row.GetChildRows(dr2))
    {
        DataRow rowdata = col.GetParentRows(dr1)[0];
        //lblDisplay.Text += "  ";
        lblDisplay.Text += rowdata["projectTitle"];
    }
}

次のエラーが表示されます。

GetChildRows には、テーブルが の行が必要ですtbl_lecturer_projectが、指定された行のテーブルはtbl_allocated_projectです。

助けてください。

4

1 に答える 1

0

これは:

DataRelation dr2 = new DataRelation("dr2", ds.Tables["tbl_lecturer_project"].Columns["lecturerProjectId"], ds.Tables["tbl_allocated_project"].Columns["allocatedProjectId"]);

これがあります:

DataRelation dr2 = new DataRelation("dr2", ds.Tables["tbl_allocated_project"].Columns["lecturerProjectId"], ds.Tables["tbl_lecturer_project"].Columns["allocatedProjectId"]);

これによりtbl_allocated_projectの親が作成されtbl_lecturer_project、それを呼び出すことができるようになりますGetChildRows

于 2013-05-09T00:06:00.750 に答える