This is a discussion on DataSet Update Problem within the SQL Server forums, part of the Microsoft SQL Server category; --> I know this is very very silly. But I am stuck and don't know what to do. I have ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| I know this is very very silly. But I am stuck and don't know what to do. I have a simple form which has 1 textbox and a 'Save' button. I have created a Database connection and an Adapter with Dataset with the help of Wizards. I have binded by text box control to one of the database field. When the form gets loaded it displays the field information correctly. "Me.SqlDataAdapter1.Fill(DsBasicData1)" However, when I press the save button it does not update the database behind it. I have given the following code to the click event of save button. "Me.SqlDataAdapter1.Update(DsBasicData1)" Strangely I don't know why the code does not work. |
| ||||
| patels (patels@india.com) writes: > I know this is very very silly. > But I am stuck and don't know what to do. > > I have a simple form which has 1 textbox and a 'Save' button. > > I have created a Database connection and an Adapter with Dataset with > the help of Wizards. > > I have binded by text box control to one of the database field. > > When the form gets loaded it displays the field information correctly. > "Me.SqlDataAdapter1.Fill(DsBasicData1)" > > However, when I press the save button it does not update the database > behind it. > I have given the following code to the click event of save button. > "Me.SqlDataAdapter1.Update(DsBasicData1)" > > > Strangely I don't know why the code does not work. And we don't know your database, or what's in that Update command. Anyway, I think you should ask about this in a group devoted to ADO .Net or Visual Studio .Net, as this is not really an SQL Server issue per se. -- Erland Sommarskog, SQL Server MVP, esquel@sommarskog.se Books Online for SQL Server SP3 at http://www.microsoft.com/sql/techinf...2000/books.asp |