只需学习如何通过Tom Owsiak C#Windows Forms视频教程创建Windows Forms应用程序,我就会陷入需要将数据存储到数据库的数据库项目(联系人管理系统)中。
我一直在遵循他的每一个步骤,但是以某种方式设法弄乱了应用程序的编写过程。错误发生在行中
SqlConnection conn = new SqlConnection(connString);
已经搜索stackExchange一段时间了,尝试尝试可能的解决方案,但仍然无法解决问题。
// error occurs here, stated key word not supported, connection timeout
using (SqlConnection connectforfucksake = new SqlConnection(connString))
{
try
{
connectforfucksake.Open(); // open the connection
// create the new SqlCommand object
command = new SqlCommand(insert, connectforfucksake);
command.Parameters.AddWithValue(@"Data_Added", dateTimePicker1.Value.Date);
command.Parameters.AddWithValue(@"Company", txtCompany.Text);
command.Parameters.AddWithValue(@"Website", txtWebsite.Text);
command.Parameters.AddWithValue(@"Title", txtTitle.Text);
command.Parameters.AddWithValue(@"First_Name", txtFName.Text);
command.Parameters.AddWithValue(@"Last_Name", txtLName.Text);
command.Parameters.AddWithValue(@"Address", txtAddress.Text);
command.Parameters.AddWithValue(@"City", txtCity.Text);
command.Parameters.AddWithValue(@"State", txtState.Text);
command.Parameters.AddWithValue(@"Postal_Code", txtPostalCode.Text);
command.Parameters.AddWithValue(@"Mobile", txtMobile.Text);
command.Parameters.AddWithValue(@"Note", txtNote.Text);
command.ExecuteNonQuery(); // pushing whatever in the form into table
}
catch (Exception ex)
{
MessageBox.Show(ex.Message); // show the unforeseen error
}
}
期望的应用程序获取结果,然后将其存储到数据库中,但是似乎SqlConnection
对象实例化导致了错误。
答案 0 :(得分:1)
听起来您的连接字符串完全错误;您最有可能的意思是“连接超时”而不是“连接超时”。包含连接超时的基本连接字符串可能类似于:
Data Source=.;Initial Catalog=master;Integrated Security=True;Connect Timeout=42