将数据保存在LocalDB中

时间:2018-07-26 08:50:13

标签: c# sql localdb

我目前正在开发一个需要将数据保存到通过Visual Studio创建的localDB中的应用程序。

我设法保存数据并使用DataGridView显示“日志”,但是由于某些原因,当我关闭应用程序时,所有数据都将删除。

我想念的东西吗?我该如何“记录”关闭应用程序后不会删除的数据。

我的代码:

if (sqlConnection.State == ConnectionState.Closed)
    {
        sqlConnection.Open();
        SqlCommand sqlCommand = sqlConnection.CreateCommand();
        sqlCommand.CommandType = CommandType.Text;
        sqlCommand.CommandText = "insert into Table values("Values")";
        sqlCommand.ExecuteNonQuery();

        sqlConnection.Close();
    }
    else if (sqlConnection.State == ConnectionState.Open)
    {
        sqlConnection.Close();
    }

0 个答案:

没有答案