Packaging vb winform db app

  • Thread starter Thread starter John
  • Start date Start date
J

John

Hi

How can I package my winform db app with sql server backend in vs2008 so the
end users only have to run a setup, and sql server and app are both
installed? In other words to make it as easy as possible for end users
instead of getting them into technicalities.

Many Thanks

Regards
 
Hi

How can I package my winform db app with sql server backend in vs2008 so the
end users only have to run a setup, and sql server and app are both
installed? In other words to make it as easy as possible for end users
instead of getting them into technicalities.

Many Thanks

Regards

You can either use ClickOnce or create a setup project in your
solution. Both of these will allow you to specify SQL Server Express
as a prerequisite (i.e. if the user machine does not already have it
it will be installed). Alternatively, you can add a SQL server compact
database to your project.

HTH
 
JDS is right but consider that any SQL Server (Express and above) requires
admin rights to install--it's a service. Only the SQL "Server" Compact
edition can be installed without having to be logged on as an admin.

--
__________________________________________________________________________
William R. Vaughn
President and Founder Beta V Corporation
Author, Mentor, Dad, Grandpa
Microsoft MVP
(425) 556-9205 (Pacific time)
Hitchhiker's Guide to Visual Studio and SQL Server (7th Edition)
____________________________________________________________________________________________
 
Back
Top