From: bertherngreen <ber...@us...> - 2004-04-21 20:47:20
|
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 |