2012-03-13 73 views
-2

我的錯誤很簡單,但對我來說很難修復它,因爲我的知識不好。這是當我通過單擊AddStudent記錄添加按鈕輸入記錄,然後記錄,我刪除記錄StudentID = 1,名字= Raju,姓氏= Abbasi無法啓用約束。一行或多行包含違反非空,唯一或外鍵約束的值

後刪除它,然後按保存更改甚至之後,當我再次嘗試使用ID = 1只表示與ID = 1進入記錄,我已被刪除並記錄StudentID = 1,名字=拉姆,姓氏=俏皮。然後誤差發生的是

 

    private static SqlDataAdapter CreateSutdentDataAdapter() 
      { 

       string gettSQL = "SELECT * FROM Student"; 

       string insertSQL = "SET IDENTITY_INSERT Student ON;INSERT INTO Student(StudentID, FirstName,LastName,Gender,GPA,MyImage)" + 
        "VALUES (@StudentID,@FirstName,@LastName,@Gender,@GPA,@MyImage);SET IDENTITY_INSERT Student OFF"; 
       string updateSQL = "UPDATE Student SET [email protected],[email protected] ,[email protected], [email protected]," + 
       " [email protected] WHERE [email protected]"; 
       string deleteSQL = "DELETE FROM Student WHERE [email protected]"; 

       SqlDataAdapter dataAdapter = new SqlDataAdapter(); 

       dataAdapter.SelectCommand = new SqlCommand(gettSQL, ConnectionManager.GetConnection()); 

       dataAdapter.InsertCommand = new SqlCommand(insertSQL, ConnectionManager.GetConnection()); 

       dataAdapter.InsertCommand.Parameters.Add("@StudentID", SqlDbType.Int).SourceColumn = "StudentID"; 
       dataAdapter.InsertCommand.Parameters.Add("@FirstName", SqlDbType.VarChar,25).SourceColumn = "FirstName"; 
       dataAdapter.InsertCommand.Parameters.Add("@LastName", SqlDbType.VarChar, 25).SourceColumn = "LastName"; 
       dataAdapter.InsertCommand.Parameters.Add("@Gender", SqlDbType.VarChar ,1).SourceColumn = "Gender"; 
       dataAdapter.InsertCommand.Parameters.Add("@GPA", SqlDbType.Float).SourceColumn = "GPA"; 
       dataAdapter.InsertCommand.Parameters.Add("@MyImage", SqlDbType.VarBinary).SourceColumn = "MyImage"; 

       dataAdapter.UpdateCommand = new SqlCommand(updateSQL, ConnectionManager.GetConnection()); 
       dataAdapter.UpdateCommand.Parameters.Add("@StudentID", SqlDbType.Int).SourceColumn = "StudentID"; 
       dataAdapter.UpdateCommand.Parameters.Add("@FirstName", SqlDbType.VarChar,25).SourceColumn = "FirstName"; 
       dataAdapter.UpdateCommand.Parameters.Add("@LastName", SqlDbType.VarChar, 25).SourceColumn = "LastName"; 
       dataAdapter.UpdateCommand.Parameters.Add("@Gender", SqlDbType.VarChar ,1).SourceColumn = "Gender"; 
       dataAdapter.UpdateCommand.Parameters.Add("@GPA", SqlDbType.Float).SourceColumn = "GPA"; 
       dataAdapter.UpdateCommand.Parameters.Add("@MyImage", SqlDbType.VarBinary).SourceColumn = "MyImage"; 
       dataAdapter.DeleteCommand = new SqlCommand(deleteSQL, ConnectionManager.GetConnection()); 
       dataAdapter.DeleteCommand.Parameters.Add("@StudentID", SqlDbType.Int).SourceColumn = "StudentID"; 

       return dataAdapter; 

      } 

     private static void DefinestudentTableSchema(DataTable table) 
     { 
      DataColumn StudentIDColumn = table.Columns.Add("StudentID", typeof(string)); 
      StudentIDColumn.AllowDBNull = false; 

      table.PrimaryKey = new DataColumn[] { StudentIDColumn }; 

      DataColumn StudentFirstName = table.Columns.Add("FirstName", typeof(string)); 
      StudentFirstName.MaxLength = 150; 
      DataColumn StudentLastName = table.Columns.Add("LastName", typeof(string)); 
      StudentLastName.MaxLength = 150; 
      DataColumn StudentGender = table.Columns.Add("Gender", typeof(string)); 

      DataColumn StudentGPA = table.Columns.Add("GPA", typeof(string)); 
      DataColumn StudentImage = table.Columns.Add("MyImage", typeof(Byte[])); 

     } 
     private static DataSet CreateStudentTrackerDataSet() 
     { 
      DataSet StudentTrackerDataSet = new DataSet(); 
      DataTable StudentTable = StudentTrackerDataSet.Tables.Add("Student"); 
      DefinestudentTableSchema(StudentTable); 
      return StudentTrackerDataSet; 
     } 

     public static DataSet GetData() 
     { 
      DataSet StudentTrakerDataSet = CreateStudentTrackerDataSet(); 
      StudentTrakerDataSet.EnforceConstraints = false; 
      StudentDataAdapter.Fill(StudentTrakerDataSet.Tables["Student"]); 

      StudentTrakerDataSet.EnforceConstraints = true; 
      return StudentTrakerDataSet; 
     } 

     public AddModifyStudentRecords(DataSet ds, DataRow row) 
     { 
public static void SaveData(ref DataSet changesDataSet) 
     { 
      DataSet addedDataSet = changesDataSet.GetChanges(DataRowState.Added); 
      if (addedDataSet != null) 
      { 
       StudentDataAdapter.Update(addedDataSet.Tables["Student"]); 
       changesDataSet.Merge(addedDataSet); // Failed to enable constraints. One or more rows contain values violating non-null, unique, or foreign-key constraints 
      } 
      DataSet modifiedDataSet = changesDataSet.GetChanges(DataRowState.Modified); 
      if (modifiedDataSet != null) 
      { 
       StudentDataAdapter.Update(modifiedDataSet.Tables["Student"]); 
       changesDataSet.Merge(modifiedDataSet); 
      } 
      DataSet deletedDataSet = changesDataSet.GetChanges(DataRowState.Deleted); 
      if (deletedDataSet != null) 
      { 
       StudentDataAdapter.Update(deletedDataSet.Tables["Student"]); 
      deletedDataSet.Merge(deletedDataSet); 
      } 

這裏是我的Addmodifyform邏輯,用於添加StudentID

 
public partial class AddModifyStudentRecords : Form 
    { 

     DataSet StudentTrackerDataSet; 
     DataRow currentRow; 


     public AddModifyStudentRecords() 
     { 
      InitializeComponent(); 
     } 

     public AddModifyStudentRecords(DataSet ds) 
     { 
      InitializeComponent(); 
      StudentTrackerDataSet = ds; 
      currentRow = null; 
     } 
    public AddModifyStudentRecords(DataSet ds, DataRow row) 
    { 
    InitializeComponent(); 
    StudentTrackerDataSet = ds; 
    currentRow = row; 
    textBox1.Text =currentRow["StudentID"] .ToString(); 
    textBox2.Text = currentRow["FirstName"].ToString(); 
    textBox4.Text = currentRow["LastName"].ToString(); 
    textBox3.Text = currentRow["Gender"].ToString(); 
    textBox5.Text = currentRow["GPA"].ToString(); 
    txtBrowseFile.Text = currentRow["MyImage"].ToString(); 
    byte[] data = (byte[])currentRow ["MyImage"]; 
    MemoryStream ms = new MemoryStream(data); 
    pictureBox1.Image = Image.FromStream(ms); 
    string StudentID = textBox1.Text.ToString(); 
    string StudentFirstName = textBox2.Text.ToString(); 
    string StudentLastName = textBox4.Text.ToString(); 
    string Gender = textBox3.Text.ToString(); 
    string GPA = textBox5.Text.ToString(); 
    Image MyImage = pictureBox1.Image; 
    DataTable table = StudentTrackerDataSet.Tables["Student"]; 
    if (currentRow == null) { 
    currentRow = table.NewRow(); 
    currentRow["StudentID"] = textBox1.Text.ToString(); 
    table.Rows.Add(currentRow); 
    } 
    currentRow .BeginEdit(); 
    currentRow ["StudentID" ]=StudentID ; 
    currentRow["FirstName"] = StudentFirstName; 
    currentRow["LastName"] = StudentLastName; 
    currentRow["Gender"] = Gender; 
    currentRow["GPA"] = GPA; 
    currentRow["MyImage"] = convertToByte(txtBrowseFile.Text); 
    currentRow.EndEdit(); 
    Close(); 
    } 

公共部分類AditStudent:表格 { //創建類可變數據集以跟蹤學生 私人DataSet StudentTrackerDataset;

 public AditStudent() 
     { 
      InitializeComponent(); 

      dataGridView1.DataError += DataGridView1_DataError; 
      StudentTrackerDataset = ProjectOfSchool.DataAccessLayer.DAC.GetData(); 

      DataTable StudentTable = StudentTrackerDataset.Tables["Student"]; 

      dataGridView1.DataSource = StudentTable; 
      //StudentTable.Columns["ID"].AutoIncrement = true; 
      for (int i = 0; i < dataGridView1.Columns.Count; i++) 
       if (dataGridView1.Columns[i] is DataGridViewImageColumn) 
       { 
        ((DataGridViewImageColumn)dataGridView1.Columns[i]).ImageLayout = DataGridViewImageCellLayout.Stretch; 
        break; 
       } 
     } 
     private void DataGridView1_DataError(object sender, DataGridViewDataErrorEventArgs e) 
     { 

      string message = string.Format("Error in {0} columan in row {1}:{2}", e.ColumnIndex, e.RowIndex, e.Exception.Message); 

      MessageBox.Show(message, "Data Error", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 
     } 
     private void button1_Click(object sender, EventArgs e) 
     { 
      AddModifyStudentRecords AddStudent = new AddModifyStudentRecords(StudentTrackerDataset); 
      AddStudent.ShowDialog(); 
     } 
     private void button2_Click(object sender, EventArgs e) 
     { 
      object id = dataGridView1.CurrentRow.Cells["StudentID"].Value; 
      DataRow StudentRow = StudentTrackerDataset.Tables["Student"].Rows.Find(id); 
      AddModifyStudentRecords modifyStudent = new AddModifyStudentRecords(StudentTrackerDataset, StudentRow); 
      modifyStudent.ShowDialog(); 
     } 
     private void button3_Click(object sender, EventArgs e) 
     { 
      DialogResult result = MessageBox.Show("Are you sure", "Delete Current Row", MessageBoxButtons.YesNo, MessageBoxIcon.Question); 
      if (result == DialogResult.Yes) 
      { 
       object id = dataGridView1.CurrentRow.Cells["StudentID"].Value; 
       DataRow currentRow = StudentTrackerDataset.Tables["Student"].Rows.Find(id); 
       currentRow.Delete(); 
      } 
     } 
     private void button4_Click(object sender, EventArgs e) 
     { 
      if (!StudentTrackerDataset.HasChanges()) 
      { 
       MessageBox.Show("There are no Change to Save ", "Save Changes", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 
      } 
      else 
      { 
       try 
       { 
        DataSet changesDateSet = StudentTrackerDataset.GetChanges(); 
        ProjectOfSchool.DataAccessLayer.DAC.SaveData(ref changesDateSet); 
        StudentTrackerDataset.Merge(DAC.GetData()); 
        MessageBox.Show("Data Save Successfully.", "Save Changes"); 
       } 
       catch (SqlException ex) 
       { 
        MessageBox.Show("Data Not Saved:" + ex.Message, "Save Changes", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 
       } 
      } 
     } 
     private void button5_Click(object sender, EventArgs e) 
     { 
      if (!StudentTrackerDataset.HasChanges()) 
      { 
       MessageBox.Show("There are no Changes to Save.", "Save Changes", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 
      } 
      else 
      { 
       DialogResult result = MessageBox .Show ("Are you Sure?","Reject Changes", MessageBoxButtons.YesNo, MessageBoxIcon.Question); 
       if (result == DialogResult.Yes) 
       { 
        StudentTrackerDataset.RejectChanges(); 
       } 
      } 
     } 

,當我終止該程序,並重新執行該程序然後我看到StudntID = 1也保存到ID = 1

數據庫或當我刪除StudentID = 1然後按保存更改後按保存更改時,我也終止程序並重新計算,然後當我輸入StudentID = 1然後沒有錯誤發生

而其他方式沒有終止是刪除記錄StudentID1但當你添加t他學生記錄,但不添加StudentID = 1但在此情況下添加StudentID,否則錯誤也不會發生。親愛的謝里克我已經解決了我的其他錯誤,但我仍然有錯誤,這是在我的Tittle所以請回應我的這個錯誤,我重新編輯我的代碼也請所有重播我謝謝

我有記錄在我的數據庫有哪些以下數據類型作爲

StudentID = INT,

姓= VARCHAR,則

名字= VARCHAR,則

性別= VARCHAR,則

GPA =浮動,

MYIMAGE = Vabinary(MAX)

,或者可以是數據行無法刪除記錄或更新該記錄。我不知道請告訴我,謝謝回覆我,我正在等待您的回覆。

回答

0

錯誤消息似乎表明您正在擊中主鍵約束。 我建議你先停止允許用戶輸入學生證字段。讓它在任何你使用的數據庫中作爲自動遞增鍵生成。在Access中,它被稱爲自動編號。

一旦你這樣做了,重新測試併發布結果。

+0

尊敬的尖叫我的程序是手動輸入StudentID,如果我會這樣做然後錯誤發生,如果不是然後我必須傳遞StudentID TextBox1.text形式AddstudentRecord,我不知道如何傳遞StudentID單擊AddStudent窗體的Addbutton時,顯示textbox1.text。並且還告訴我如何生成自動增量鍵 – 2012-03-14 13:29:51

+0

這裏是我的Addmodifyform邏輯,用於添加StudentID public AddModifyStudentRecords(DataSet ds,DataRow row) InitializeComponent(); StudentTrackerDataSet = ds; textBox1.Text = currentRow [「StudentID」] .ToString(); textBox2.Text = currentRow [「FirstName」]。ToString(); textBox4.Text = currentRow [「LastName」]。ToString(); textBox3.Text = currentRow [「Gender」]。ToString(); textBox5.Text = currentRow [「GPA」]。ToString(); txtBrowseFile.Text = currentRow [「MyImage」]。ToString(); byte [] data =(byte [])currentRow [「MyImage」]; MemoryStream ms = new MemoryStream(data); pictureBox1.Image = Image.FromStream(ms); – 2012-03-14 13:33:32

+0

以及此字符串StudentID = textBox1.Text.ToString(); string StudentFirstName = textBox2.Text.ToString(); string StudentLastName = textBox4.Text.ToString(); string Gender = textBox3.Text.ToString(); string GPA = textBox5.Text.ToString(); 圖片MyImage = pictureBox1.Image; DataTable table = StudentTrackerDataSet.Tables [「Student」]; if(currentRow == null) { – 2012-03-14 13:40:52

相關問題