未处理的参数异常是错误

未处理的参数异常是错误

本文介绍了未处理的参数异常是错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

希望使用visual studio将SQL数据库连接到C#。执行时我收到错误



String source =有连接字符串

SqlConnection con = new SqlConnection(source);

{

}



我的尝试:



尝试所有可能的操作改变源字符串

wanted to connect the SQL database to C# using visual studio . When executed i'm getting an error

String source = "has the connection string "
SqlConnection con = new SqlConnection(source);
{
}

What I have tried:

tried all possible operations altering the source string

推荐答案


这篇关于未处理的参数异常是错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 16:50