SQL
Tutorials, tips and tricks on SQL (Structured Query Language).
Get the most out of the leading language for querying relational databases.
The SqlDataSource.EnableCaching
property allows to save the
results of a specific database query.
When the caching is activated, if you reset EnableCaching
to
false, the query result is not retrieved from the cache anymore but it's
re-executed every time.
But surprisingly, if you reset EnableCaching
to true again,
the data is retrieved from the old cache.
Read all the article...