SQLDMO

  • Thread starter Thread starter agus
  • Start date Start date
A

agus

Hi All

I'm not sure if this is the correct newsgroup for this
question, if not, please tell me where to post it, thanks

Im using C#, and add a reference (COM Reference)
Microsoft SQLDMO Object library, the question is, how can
I deploy my application on the client ? which is no SQL
Server installed ?
because when I running the application on the client, I
can't get list of server that have SQL Server Instance

is there any othe reference that should I adding to my
application

thx before

regards,
Agus
 
You have to read the redist.txt license to see what can be redistributed. I
don't think that SQLDMO can be redistributed with the default license. At
any rate, you need to check out what redistributable packages exist for you
to package along with your app.
-mike
MVP
 
[snip]
Im using C#, and add a reference (COM Reference)
Microsoft SQLDMO Object library, the question is, how can
I deploy my application on the client ? which is no SQL
Server installed ?
because when I running the application on the client, I
can't get list of server that have SQL Server Instance

If you are only using sqldmo to retrieve a list of sql servers you can
easily replace it by using the NetServerEnum windows api. There are examples
of using the api on google.

hth
andrew
 
Back
Top