Logo App ile host üzerinden veritabanı bağlantı bilgileri, aktif kullanıcı bilgileri ve widget ile ilgili ayarlar gibi uygulamaya yönelik bilgiler okunabilir.
GetConfig
private void cmdConnectionInfo_Click(object sender, EventArgs e){
try
{
ConnectionConfig config = AppHelper.Instance().GetConnectionConfig(); ;
txtInfo.AppendText("Kullanıcı Adı : " + config.username);
txtInfo.AppendText(Environment.NewLine);
txtInfo.AppendText("Şifresi : " + config.password);
txtInfo.AppendText(Environment.NewLine);
txtInfo.AppendText("Veritabanı : " + config.dbname);
txtInfo.AppendText(Environment.NewLine);
txtInfo.AppendText("Sunucu : " + config.servername);
}
catch (Exception exp)
{
MessageBox.Show("Beklenmeyen hata, bağlantı bilgileri okunamadı \n" + exp.ToString());
}
}
Copyright © 2018 Logo Yazılım