Offline .NET

  • Thread starter Thread starter news
  • Start date Start date
news said:
Can I run .NET (c#) offline - to update MS SQL?
As Morten said, if your SQL Server instance is local *and* you're talking
about a Windows app or a web app running on a local instance of IIS.
 
What do you mean by offline? It could either be
1. An ASP.Net app running on your local IIS.
2. A Win forms app running on your local machine.

In both cases, you will be able to update an MS SQL database if:-
1. The instance of MS SQL server is running on your local machine
2. The instance of MS Sql server is running on a machine on a network that
you are connected to and you have valid credentials on the network and on the
specific database you want to access.

Hope this helps.

Cheers..
 
Details:

ded server at hostway.com - MS SQL, .NET- the server has a ded licence for
MS SQL. I dont have root access, but I can get this by requesting it.

Current: .NET, C# updating MSSQL via IE - Problem is the comm link breaks
due to client-server communications and I dont know when the update is done.

Desired: to run the tasks direct on the server. The server does not have
TELNET but I can use FTP or request support to run tasks.

My C# is all written as objects so the Web interface is not at all important
and it starts the transaction only.
 
Back
Top