Явное значение столбца identity в таблице 'tblcustomer' может быть указано только в том случае, если используется список столбцов и включен параметр IDENTITY_INSERT.
я собираюсь вставить значение в таблицу, но сталкиваюсь с проблемой и задаюсь вопросом, почему произошла эта ошибка.
Мой вопрос таков.
string str = "insert into Tblcustomer values ('" + txtname.Text + "','" + txtaddress.Text + "','" + txtmobile.Text + "','" + txtemail.Text + "','" + InDate.Text + "','" + OutDate.Text + "','" + combostate.Text + "','" + txtperson.Text + "','" + txtRoomType.Text + "','"+comboRoomNo.Text+"','"+txtblock.Text+"')";
Что я уже пробовал:
My query like this. <pre>string str = "insert into Tblcustomer values ('" + txtname.Text + "','" + txtaddress.Text + "','" + txtmobile.Text + "','" + txtemail.Text + "','" + InDate.Text + "','" + OutDate.Text + "','" + combostate.Text + "','" + txtperson.Text + "','" + txtRoomType.Text + "','"+comboRoomNo.Text+"','"+txtblock.Text+"')";