This is my first ASP.Net project. I am used to WPF. I am creating this project in Visual Studio 2010, using the C# language.
I can't find the answer to the following question.
I have a DataGrid that needs to show all the inquiries given to that department, which is not on site. So the department needs the .Net app to get hold of the SQL Server 2008 DB. This is the code I have:
PS : I am used to loading the SQL statement into a DataTable, but it seems .Net doesn't have it.
So what I am asking is, how do I get this method to show into the DataGrid, seeing as I can't use the DataTable class?
: code :
SqlCommand _nuecommand = new SqlCommand();
SqlDataAdapter _nuweadapter = new SqlDataAdapter();
SqlConnection conn = new SqlConnection();
try
{
if (conn.State == System.Data.ConnectionState.Closed ||
conn.State == System.Data.ConnectionState.Broken)
{
conn.Open();
}
string _sql = "";
_nuecommand.Connection = conn;
_sql =
"SELECT [Field],[Field],Field,[Field],[VeField],FieldFROM [Table]" +
" WHERE [Field] = 'value' AND [Field] = 'Value' AND" +
" [Field] IS NULL ";
_nuecommand.CommandText = _sql;
_nuweadapter.SelectCommand = _nuecommand;
_nuecommand.CommandTimeout = 6000;
_nuweadapter.Fill(_dtnuwe);
dgnavrae.DataSource = _dtnuwe.DefaultView;
dgnavrae.databind();
}
catch (Exception ex)
{
LogInInde.Pages.ErrorPage._error = ex.Message;
throw ex;
}


SqlCommand,SqlDataAdapter, andSqlConnection. They are allIDisposables that will leak resources if not disposed after use. – M Afifi Sep 28 '12 at 9:40