使用 wpf 应用程序和 sqlcmd 测试数据库连接
我需要从我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用sqlcmd吗?如果没有,您最好使用 ADO.NET...
Do you have to use sqlcmd? If not, you would be much better off to use ADO.NET...