Implement a system

  • Thread starter Thread starter msnews.microsoft.com
  • Start date 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
 
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.
 
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
 
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
 
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
 
Back
Top