Click here to Skip to main content
15,887,822 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I develop windows application sql server in visual studio.After completion I convert it into exe files...Is it Possible To Run exe files on other Systems without sql server..Send me proper solution.....
Posted
Comments
Sergey Alexandrovich Kryukov 16-Oct-12 1:25am    
Other systems mean "other then Windows" (yes, this is possible), or just another computer (even more possible), but what is "without SQL server"?! How without? The SQL server works through network...
--SA

If your implemented any logic related SQL(Insertion,Deletion of Data, Updation of Data) then you need to connect to some sql Database(It may be in your system or some other system in Network).
 
Share this answer
 
Hi,

If you have setup your connection string appropriate to see sql server from central server then your application can be run from different computers in the network. I believe you need appropriate connection string to select your sql server. like,
Server=IPAddress;Database=DBInstanceName;User Id=Username;Password=Password;

Best luck.
 
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