I\'m running into the strangest thing that I can\'t figure out. I have a SQL table with a bunch of reports stored in an ntext field. When I copied and pasted the value of on
wild guess here.
cmd.Parameters.Add(new SqlParameter("CompiledReportTimeID", CompiledReportTimeID));
you missed the @ sign. so it replaces both instances of CompiledReportTimeID with the id and you get all the results instead because of the equality?