English 中文(简体)
未更新的行
原标题:Rows not being updated

我写下以下功能 是为了更新我数据库里的学生信息:

public bool UpdateStudent(Student stu)
{
   Console.WriteLine("StudentManger.UpdateStudent): Called");

   int rowsChanged = 0;

   using (var cnn = new SqlConnection(
          Properties.Settings.Default.universityConnectionString))
   {
      using (var cmd = new SqlCommand("UPDATE Student " +
              "SET FirstName = @FirstName, " +
              "lastName = @LastName, " +
              "birth = @birth " +
              "WHERE id = @id", cnn))
      {
        cmd.Parameters.Add(new SqlParameter("@FirstName", stu.FirstName));
        cmd.Parameters.Add(new SqlParameter("@LastName", stu.LastName));
        cmd.Parameters.Add(new SqlParameter("@id", stu.ID));
        cmd.Parameters.Add(new SqlParameter("@birth", stu.Birth));

        cnn.Open();
        rowsChanged = (int)cmd.ExecuteNonQuery();
        Properties.Settings.Default.Save();
      }
    }
    Properties.Settings.Default.Save();
    return (rowsChanged != 0);
  }

但当我调用函数时,没有数据实际上被保存到数据库中

有人能告诉我为什么吗?

最佳回答

您在 < a href=> https://chat.stackoverflow.com/ rooms/ 11666/discussion- bet-james- dangelo- and-aahn > > > chat 中提供的解决方案和信息, 您的代码是好的。 问题在于. mdf 数据库文件被设置为“ 复制到输出目录 ” : “ 总是” 。 将此属性更改为“ 如果更新” (或“ 不复制”, 并移动到文件夹), 当您重新运行应用程序时它不会覆盖您的更改 。 重要的是, 您将无法 < em > 看到您在应用程序中所做的修改在您的. mdf 数据库文件 < em > 中反映在您的 root 目录 < / / em 中。 它实际上被复制到 / bin 文件夹中, 并且更改会持续到 。 所以, 如果您不修改“ 复制到文件夹” 属性, 它将会从您的 root 复制到您的/ bin 文件夹中, 每次您正在不断 。

问题回答

暂无回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签