1

In the Glimpse SQL tab, some of the stored procedures called are orange. What does this signify? The tab details don't seem to say what that means.

I am using Glimpse.MVC5 and Glimpse.ADO, if that makes a difference.

White Wolf
  • 47
  • 7

2 Answers2

1

I had a similar question, see Why are some commands in Glimpse's SQL tab orange with an exclamation icon?

I downloaded the Glimpse code and answered my own question. Here's the short of it:

Glimpse.Ado maintains a dictionary that tracks the number of times each particular command text has been executed during the lifetime of a web request. Any command texts that have been executed previously in the web request are marked as duplicate and these duplicate requests are colored orange in the Sql tab.

Here's a direct link to my answer, with more details.

Community
  • 1
  • 1
Scott Mitchell
  • 8,659
  • 3
  • 55
  • 71
0

It appears those mean that transactions are left open, as I gathered from this rather old issue.

John
  • 6,693
  • 3
  • 51
  • 90