Chriz L

Chriz L

  • NA
  • 220
  • 49.1k

Return only date from dataset.

Sep 24 2015 2:40 AM
Hello,
 
I have a stored procedure that populates dates in SQL Server 2012 (InsDate AS date). When I execute the spoc i get InsDate=2015-06-06 which is the format I need.
 
I retieve data  into my webform using the following code:
 
SqlCommand command = new SqlCommand("SelectSproc", connection);
command.CommandType = CommandType.StoredProcedure;
SqlDataAdapter adapter = new SqlDataAdapter(command);
DataSet ds = new DataSet();
adapter.Fill(ds);
insDate.Text = ds.Tables[0].Rows[0]["InsDate"].ToString();
 
Result: insDate.Text= 2015-06-06 12:00:00 am
 
Why do I get the time part since I'm populating only dates from the SQL? How can I get rid of the time part?
 
Thank you in advance. 
 
 

Answers (8)