我在使用 Visual Studio 2010 时遇到问题。我正在使用基于服务的数据库 ( .mdf
)。我在 Visual Studio 中手动创建了一个包含一些信息的表。我编写的代码可以从表中读取,但是当我插入新信息时,看起来数据已添加到其他数据库中。
我可以从正确的表中读取信息,但是当我向表中添加信息时,我在 Visual Studio 的服务器资源管理器中看不到更改。
我不知道为什么要使用不同的数据库!有人知道问题吗?
这是我的代码:
public class DataAccess
{
private SqlConnection sqlConnection;
private SqlCommand sqlCommand;
private SqlDataAdapter dataAdapterAnimal;
private DataSet dataset;
private string connectionString = DBAccessLayer.Properties.Settings.Default.AnimalDBConnectionString;
public DataSet LoadAnimalDataSet()
{
dataset = new DataSet();
using (sqlConnection = new SqlConnection(connectionString))
{
sqlConnection.Open();
dataAdapterAnimal = new SqlDataAdapter("SELECT * FROM AnimalTable", sqlConnection);
dataAdapterAnimal.Fill(dataset, "AnimalTable");
sqlConnection.Close();
return dataset;
}
}
public void AddAnimal(int animalID, string name, double age, string category, string gender, string extraAnimalInfo)
{
sqlConnection = new SqlConnection(connectionString);
sqlCommand = new SqlCommand("INSERT INTO AnimalTable VALUES(@AnimalID, @Name, @Age, @Category, @Gender, @ExtraAnimalInfo)", sqlConnection);
try
{
sqlConnection.Open();
sqlCommand.Parameters.Add(new SqlParameter("@AnimalID", animalID));
sqlCommand.Parameters.Add(new SqlParameter("@Name", name));
sqlCommand.Parameters.Add(new SqlParameter("@Age", age));
sqlCommand.Parameters.Add(new SqlParameter("@Category", category));
sqlCommand.Parameters.Add(new SqlParameter("@Gender", gender));
sqlCommand.Parameters.Add(new SqlParameter("@ExtraAnimalInfo", extraAnimalInfo));
sqlCommand.ExecuteNonQuery();
sqlConnection.Close();
}
catch (Exception ex)
{
throw;
}
}