Click here to Skip to main content
15,921,212 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi Everyone
i develop an application with V.C#.net 2008 that work on sqlserver data base
i want know how to use SqlServer database , after install on target local computer(one computer) Without need to install Sqlserver Full-version(not express version)?
Posted

There is no way of interacting with the mdf file of Sql Server unless you have an instance of Sql Server running. That means you either have to install Sql Server on the local machine or Sql Server express. Sorry.

Hope this helps
 
Share this answer
 
Do you mean "I have written an application which uses an SQL server database. When I install it on a different machine, it want the application to work without any installation of SQL Server"?

If so, then you can't - SQL server databases need SQL server to be installed and available in order to work. If you are trying to use it as a single user database, however, you could fairly easily convert your program to work with either SQLCE (which requires no installation at all, but does not support Stored Procedures) or SQLite.
 
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