Hello,
Does anyone know if (and how) it is possible to list all database names on a
server with the FBServerProperties.DatabasesInfo property?
Like
srv.Connect(this.cboServers.SelectedItem.ToString(),this.txtUser.Text,this.t
xtPassword.Text);
foreach(SQLDMO.Database db in srv.Databases)
{
if(db.Name!=null)
this.cboDatabase.Items.Add(db.Name);
with SQLDMO
Bert
|