SQLサーバーから情報を取得し、ユーザーが選択したパラメーターに基づいてデータグリッドビューにロードしようとしています。この質問の最後に投稿した例は、プログラムの以前の関数で機能しましたが、現在は機能していません。これは、問題が実際にデータをDGVに出力するラインにあると私に信じさせます。なぜDGVがいっぱいにならないのかについて何か考えはありますか?2つの例を含めましたが、どちらも機能していません。何らかの理由で、デバッグからサーバーから情報を正常に取得していることがわかっているにもかかわらず、DGVに情報を入力していないだけです。
SqlConnection DBConnection = new SqlConnection(ConnectionString);
//Opens the connection
DBConnection.Open();
//Creates a string to hold the query
string query = "SELECT * FROM PRD WHERE PRD_NUM LIKE '" +OutputBeforeIncrement + "%'";
//Creates an SQLCommand object to hold the data returned by the query
SqlCommand queryCommand = new SqlCommand(query, DBConnection);
//Uses the aforementioned SQLCommand to create an SQLDataReader object
SqlDataReader queryCommandReader = queryCommand.ExecuteReader();
//Creates a DataTable to hold the data
DataTable dataTable = new DataTable();
//This part actually loads the data from the query into the table
dataTable.Load(queryCommandReader);
dgvOutput.DataSource = dataTable;
他の例:
using (SqlDataAdapter newDA = new SqlDataAdapter(query, DBConnection))
{
DataTable Table = new DataTable();
newDA.Fill(Table);
dgvOutput.DataSource = Table;
}