Packaging vb winform db app

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
 
J

JDS

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
 
W

William Vaughn \(MVP\)

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)
____________________________________________________________________________________________
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Deploying sql server app 3
Binding to dynamic sql 10
Exporting to excel 1
Sample app 1
Winform sql server app 1
New db application advise 3
Stored procedure advise 3
Disconnected app with sql server compact 2

Top