C# .Net SQL Server Connections

  • Thread starter Thread starter chodge
  • Start date Start date
C

chodge

I have created an app in VS 2005 C# using .Net connecting to a corporate SQL
2000 Server. When connecting at the main office all is well. When connecting
from one of our remote locations the connection is slow (T1). This results in
inacurate data being displayed after GetData and Fill operations. My
assumption is that the app believes the operations are complete before they
really are and then executes the code following the GetData and Fill
statements. Is there a way to trigger code execution after these operations
have actually completed?
 
I have created an app in VS 2005 C# using .Net connecting to a corporate SQL
2000 Server. When connecting at the main office all is well. When connecting
from one of our remote locations the connection is slow (T1). This resultsin
inacurate data being displayed after GetData and Fill operations. My
assumption is that the app believes the operations are complete before they
really are and then executes the code following the GetData and Fill
statements. Is there a way to trigger code execution after these operations
have actually completed?

Hi,

That's weird, you should get an error if anything happens during
transmission.
What kind of inacuracy are you taking about?
 
Back
Top