Tagged Questions

0
votes
1answer
16 views

Production SqlSiteMapProvider issue - all the items ‘disappeared’?

Hello, We have several ASP.NET applications that use a sitemap which is populated via a VB.NET implementation of the SqlSiteMapProvider example found at Wicked Code. It is compiled to a DLL, then …
0
votes
1answer
27 views

SQL Server Notifications - My OnChange does not fire.

Hey eveyone.. I would like to make use of SQL Server notifications to capture insert events at my database within a winforms app. I am attempting to use the SQLDependency object. The MSDN articles …
0
votes
2answers
36 views

SQL Dependency with SQL Server express 2005

Is it possible to use SQL Dependency with SQL Server Express 2005 which comes with VS 2008?
0
votes
1answer
33 views

Windows Application SqlDepedency Calling Onchange infinitely

Hi, I have console application in which I am doing sqldependency. My problem is when I set commandType as Text, it is working fine. But if I use commandType as StoredProcedure, onchange method is …
0
votes
0answers
13 views

Cache drop if query has WHERE Clause

Hi, I am using SqlDependency and CacheManager class(Enterprise library Cachcing block) to create a cache in one of vb.net project. I have registerd OnDependencyChanged(ByVal sender As Object, …
0
votes
2answers
45 views

Returning data from sqldependency

I'm trying to write a vb.net application that uses an sql dependancy. The dependancy will be triggered when data is added to the database. I'm wondering if it's possible to have the dependancy …
0
votes
0answers
121 views

Invalid Sql Cache Dependency, SELECT TOP statements and pagination queries using ROW_NUMBER()

I have found that regular pagination methods (for example, 2 nested SELECT staments that use ROW_NUMBER() to create a temporary field) do not allow SqlCacheDependency to work properly when we set the …
0
votes
2answers
109 views

SqlCacheDependency in n-Tier Architekture

I read some articles about SqlCacheDependency. I think it is a really cool way for updating caches, but i'm not sure how i can handle this technologie if my application is a n-tier architekture. Is …