What is “The parameterized query … which was not supplied.” error?
问题 I have experienced an error on "The parametrized query '(@blue nvarchar(4000))SELECT blueBallImage FROM CorrespondingBal' expects the parameter '@blue', which was not supplied." I am doing a HttpHandler. I want to retrieve the image from the database. My codes are as below. public void ProcessRequest (HttpContext context) { string image = context.Request.QueryString["image"]; SqlConnection con = new SqlConnection(@"Data Source=localhost;Initial Catalog=MyCloudGames;Integrated Security=True");