Click here to Skip to main content
15,885,365 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
Hi,

I've create setup for my windows database application.SQLExpress 2005 is back end of my application so i create a bootstraper with the help of dotNetInstaller.
My questionis how to silent install SQLExpress 2005 ?
regards,
ambarish
Posted

1 solution

You shouldn't.

SQL is a very separate program: if you need it you should give the user the option to install it, or a later version, or to use any existing full or express version.

Think about it: If I have SQL 2008 R2 installed on a DB server, why would I want every PC in my building to have it's own, separate installation of SQL express 2005?

If you need to use a single user database for you application, then use something like SqlCE, which provides most of the full Sql functionality, with no additional software installation, other than that needed for .NET anyway.
 
Share this answer
 
Comments
ambarishtv 24-May-11 5:01am    
I've use stored procedure, Is support SQLCE?
OriginalGriff 24-May-11 5:15am    
No. Stored Procedures aren't supported in SqlCE - there isn't a lot of point in a single user environment where the processing takes place in the callers context, rather than a separate application as in SQL. However if you are using this as a single user DB anyway, it shouldn't take much to extract them into scripts anyway.
ambarishtv 24-May-11 5:29am    
Thank you Griff

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