使用 wpf 应用程序和 sqlcmd 测试数据库连接

发布于 2024-11-29 19:52:29 字数 316 浏览 2 评论 0原文

我需要从我的 wpf 应用程序测试数据库连接,即类似的方法:

bool TestCon(string dbserver, string user, string password, string dbname)
{
    bool success;
    // code
    return success;
}

我已经看到我可以使用 sqlcmd -S dbserver -U user -P password -d dbname,但不清楚如何从中读取答案sqlcmd 所以我的程序可以说:连接成功!!或者登录错误!!或者服务器不好!!谢谢。

I need to test a database connection from my wpf application, that is, a method like:

bool TestCon(string dbserver, string user, string password, string dbname)
{
    bool success;
    // code
    return success;
}

I have seen I can use sqlcmd -S dbserver -U user -P password -d dbname, but it's not clear how can I read an answer from sqlcmd so my program can say: connection successful!! or bad login!! or bad server!! Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

双手揣兜 2024-12-06 19:52:29

必须使用sqlcmd吗?如果没有,您最好使用 ADO.NET...

bool TestCon(...)
{
  try
  {
    using(var connection = new SqlConnection("your connection string"))
    {
      connection.Open();
      connection.Close();
      return true;
    }
  }
  catch
  {
    return false;
  }
}

Do you have to use sqlcmd? If not, you would be much better off to use ADO.NET...

bool TestCon(...)
{
  try
  {
    using(var connection = new SqlConnection("your connection string"))
    {
      connection.Open();
      connection.Close();
      return true;
    }
  }
  catch
  {
    return false;
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文