|
-
Aug 6th, 2007, 06:17 AM
#1
Thread Starter
New Member
VS 2005 and Databases
Hi,
I am trying to deploy a RSS reader I have built involving a SQL database. I was wondering if there is a way to deploy the app so that when the user runs it on a machine that does not have SQL 2005 Express Edition they do not have to download and install it as well.
Thanks,
DJel.
-
Aug 6th, 2007, 12:57 PM
#2
Re: VS 2005 and Databases
It depends on where the database they are going to use is located. They will however need to install the drivers (client) for any database that need one.
You are using ADO and connect using the ADO Connection Strings and OLEDB?
-
Aug 6th, 2007, 04:27 PM
#3
Thread Starter
New Member
Re: VS 2005 and Databases
Sorry I am a bit new to databases,
I just setup a normal .mdf database in VS and then setup their relationships using a dataset (.xss). Then the items on the form just have a connection to the database via a table adapter and a binding source.
-
Aug 6th, 2007, 04:32 PM
#4
Re: VS 2005 and Databases
If the database is for a single user can use SQL Server Compact Edition - it requires no other installs and runs in the process space of you application itself.
-
Aug 6th, 2007, 04:59 PM
#5
Thread Starter
New Member
Re: VS 2005 and Databases
How would I go about incorporating that into my install, so that the user doesn't have to download it?
-
Aug 6th, 2007, 05:10 PM
#6
Re: VS 2005 and Databases
 Originally Posted by DJel
How would I go about incorporating that into my install, so that the user doesn't have to download it?
I'm not big on installs of VS stuff yet - but I believe it simply becomes part of the ref's that are put into the setup for your app.
Remember SQL CE does not run as a service - it's compiled into your .EXE itself.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|