I suddenly started getting this problem after updating my machines to SQL2000 SP4
My app is a vb6 app using the OLEDB.1 driver
I have noticed that if i try to connect from a machine that has sp4 installed everything works fine but if the clent does not have SQLServer 2000 SP4 installed on itself (why would i want to do that) I get the error
Hello all,
i will just state my experience and i dont know exactly what happened. i had the same general network error on a local lan, with sql server 2000 at random cases. one command may work 10 times without a porblem then fails and then works fine again then fail again. no rules.
i solved the problem finaly by using a better network card on the client machines.
i am not sure how is this related but after i changed the network cards, i have never seen this problem again.
regards
Hi All,
When i am trying to connect SQL server by using SQL connection from C#.NET application i am receiving the error
[DBNETLIB][ConnectionRead (WrapperRead()).]General network error. Check your network documentation
But i am able login to sql server directly with same login credentials which i am using in code.
My code used to work but suddenly i am getting this error.
can you please help in resolving this issue.
You can also mail me your suggestions on mail id (nareddykrishna@gmail.com)
Thanks for your help
thanks my problem is nulled :S
I have the same problem "General network error. Check your network documentation", when I try to connect to the SQL server 2000 from the Pocket PC with this code:
ConnectionString = @"Data Source=MyServer,1433; Initial Catalog=MyDataBase; User ID=MyuserId; Password=MyPass; Integrated Security=SSPI;";
I had the same problem when I upgraded my code from VS 2003 to VS 2005.
The steps below fixed my problem:
The old application used OLEDB. I used ASPCompat="true" in the page directive of the updated version VS 2005.
I then I added impersonation in my web.config as follows:
<identity impersonate="true" userName="" password="" />