Implement a system

  • Thread starter msnews.microsoft.com
  • Start date
M

msnews.microsoft.com

Hi All,

If I want to deploy an C#+SQL2000 application to client site, does the
client computer
need to have SQL2000 server at all ? or the relevant database and tables
will be collected
during the process of creating an installer ?

Thanks
John
 
N

Nicholas Paldino [.NET/C# MVP]

John,

The client site needs to have SQL server 2000 installed already.
Generally speaking, if I am deploying an app to the client that requires SQL
Server 2000, then I will require that they purchase and install SQL Server
2000, so that the responsibility of licensing is not on my shoulders (and
I'm not breaking any agreements, as I am not a SQL server 2000 vendor).

Hope this helps.
 
E

Eliyahu Goldin

SQL2000 is a separate product and can't be installed from within your
application. You should call it "a prerequisite". It should exist before the
installation.

Database and tables are part of your solution and you should install them
during your application installation.

BTW, are you sure that the client computer should run SQL Server? May be
the server can be located on another machine and the application machine
will run SQL Client? Or may be you need two separate installs: server and
client?

Eliyahu
 
E

Eliyahu Goldin

As far as your database deployment is concerned, copying Access .mdb file is
fine. But Access itself also needs to be installed on the target machine,
either full version or run-time only. You can't use an Access db without
database components that come with Access. If you have the MS Office
development version, you can deploy Access run-time files with your
database,

HTH,

Eliyahu
 
J

John

Thanks Eliyahu !!

"Eliyahu Goldin" <[email protected]> ¼¶¼g©ó¶l¥ó·s»D
:O#[email protected]...
As far as your database deployment is concerned, copying Access .mdb file is
fine. But Access itself also needs to be installed on the target machine,
either full version or run-time only. You can't use an Access db without
database components that come with Access. If you have the MS Office
development version, you can deploy Access run-time files with your
database,

HTH,

Eliyahu
 

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

Top