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.
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.