1

そのため、DataAdapter とデータセットを使用してデータベースに連絡先を追加しようとしています。しかし、データを追加しようとすると同じエラーが発生し続けます (タイトルを参照)

また、データを更新してもエラーは発生しませんが、何も更新されません。

ユーザーコードの追加

public void AddUser(Contact contact) {
  command.Connection = getConnection();
  command.CommandText = "INSERT INTO tblContact VALUES(Id = @contactid, LastName = @lastname, FirstName = @firstname, Address = @address"
    + "PostCode = @postcode, City = @city, Gender = @gender, Blocked = @blocked)";

  command.Parameters.AddWithValue("@contactid", contact.AccountId);
  command.Parameters.AddWithValue("@lastname", contact.LastName);
  command.Parameters.AddWithValue("@firstname", contact.FirstName);
  command.Parameters.AddWithValue("@address", contact.Address);
  command.Parameters.AddWithValue("@postcode", contact.PostCode);
  command.Parameters.AddWithValue("@city", contact.City);
  bool gender = (contact.Gender == Gender.Male ? true : false);
  command.Parameters.AddWithValue("@gender", gender);
  command.Parameters.AddWithValue("@blocked", contact.Blocked);
  try {
    adapter.InsertCommand = command;
    adapter.Update(dsCon, "tblContact");
    adapter.Fill(dsCon, "tblContact");
  }
  catch (Exception e) {
    String code = e.Message;
  }

}

ユーザーの更新に使用されるコード

 public void ModifyUser(Contact contact) 
 {
  command.Connection = getConnection();
  command.CommandText = "UPDATE tblContact SET LastName = @lastname, FirstName = @firstname, Address = @address" 
    + "PostCode = @postcode, City = @city, Gender = @gender, Blocked = @blocked " 
    + "WHERE Id = @contactid";

  command.Parameters.AddWithValue("@contactid", contact.AccountId);
  command.Parameters.AddWithValue("@lastname", contact.LastName);
  command.Parameters.AddWithValue("@firstname", contact.FirstName);
  command.Parameters.AddWithValue("@address", contact.Address);
  command.Parameters.AddWithValue("@postcode", contact.PostCode);
  command.Parameters.AddWithValue("@city", contact.City);
  command.Parameters.AddWithValue("@gender", contact.Gender);
  command.Parameters.AddWithValue("@blocked", contact.Blocked);

  adapter.UpdateCommand = command;
  adapter.Update(dsCon, "tblContact");
  adapter.Fill(dsCon, "tblContact");
}

これらのプロセスを開始するフォーム内のコード

private void btnSave_Click(object sender, EventArgs e) {
  Contact currentContact = new Contact();
  currentContact.AccountId = Int32.Parse(lblID.Text);
  currentContact.LastName = txtLastName.Text;
  currentContact.FirstName = txtName.Text;
  currentContact.Address = txtStreet.Text;
  currentContact.PostCode = Int32.Parse(txtPostalCode.Text);
  currentContact.City = txtCity.Text;
  currentContact.Gender = (rdbMale.Checked == true ? Gender.Male : Gender.Female);
  currentContact.Blocked = chkBlocked.Checked;
  currentContact.Address = txtStreet.Text;
  if(isNewContact){
    currentContact.AccountId = (manager.GetContacts().Last().AccountId + 1);
    manager.GetOleDbManager().AddUser(currentContact);
  } else {
        manager.GetOleDbManager().ModifyUser(currentContact);
  }
  currentContact.Categories = new List<Category>();
  foreach (Object c in lstCategories.SelectedItems) {
    currentContact.Categories.Add((Category)c);
  }

  isNewContact = false;

}

あなたがそれを助けることができれば素晴らしいでしょう、これは私が使用しているデータベースのスクリーンショットです http://i50.tinypic.com/2s93klk.png

4

1 に答える 1

1

挿入コマンドは有効な SQL INSERT ステートメントではありません。

command.CommandText = "INSERT INTO tblContact VALUES(@contactid, @lastname, @firstname,"+ 
                      "@address,@postcode, @city, @gender, @blocked)";

更新コマンド テキストにカンマがありません

command.CommandText = "UPDATE tblContact SET LastName = @lastname, FirstName = @firstname," +  
                      "Address = @address, PostCode = @postcode, City = @city, " + 
                      "Gender = @gender, Blocked = @blocked WHERE Id = @contactid";

ただし、一部の OleDb プロバイダー (Microsoft.ACE.OleDb.xx など) では、ParameterCollection が SQL テキストに表示される正確な順序でパラメーターを持つ必要があるため、コマンドも失敗します。(名前付きパラメーターはサポートされていません)。更新ステートメントには、最初に追加するときに最後のパラメーターとして @contactid が含まれます。@contactid を最後のパラメータとして追加して AddWithValue シーケンスを変更してみてください。

于 2012-11-19T16:06:37.083 に答える