Click here to Skip to main content
15,890,995 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Is there SQL 2005 tool needed after application is deployed and installed.
SQL2005 has been used as a database tool in an application development.
Please don't mind my so simple questions...I'm a new learner.
Thanks and regards.
Posted
Updated 10-Mar-11 5:19am
v2
Comments
Corporal Agarn 10-Mar-11 11:28am    
Are you using a front end? You might want to add that to the tags.
Henry Minute 10-Mar-11 11:33am    
Are you asking because you have deployed your application and it does not work or just out of curiosity?

If the first of these, you will get better answers if you tell us what errors you are getting.
Muhamamd Islam 10-Mar-11 14:05pm    
application developed in VS2005pe IDE which has built-in SQL2005. I used a DB connection via SQL2005. I published it OK. runs on my PC OK. BUT!!! when I run this application on another PC having no SQL2005 installed, it does not recognize my published application files, until I install SQL2005, then runs OK.
AspDotNetDev 10-Mar-11 16:55pm    
You probably need to change your connection string to point to your database from outside of your network. Likely, you are using a local connection string, which would not work from an external computer.
Muhamamd Islam 10-Mar-11 20:35pm    
OK Thanks. I check my connection string.

1 solution

So, you are wondering what you need to deploy SQL Server 2005? One typically does not deploy SQL Server 2005. Instead, you host it on your servers and your connection strings (bundled with your application) should point to the SQL Server instances you are hosting. If you want a database that can be easily installed on a client computer, go with SQL Server CE (though that has some annoying limitations). You could also use some of the other SQL implementations out there.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900