What am I missing here? Based on what the help files tell me, it seems like
my code should look like this:
libraryTableAda pter1.Fill(libr ary1._Library);
libraryTableAda pter1.Insert(re sult, 1, 0, 0, 0, 0, "",
"", "", "", 2000);
libraryTableAda pter1.Update(li brary1._Library );
library1._Libra ry.AcceptChange s();
When my program finishes, however, there is nothing new. The row was never
added to the actual db.
libraryTableAda pter1 is a TableAdapter
library1 is a DataSet
result is a string
PS: This is in VS2005.
my code should look like this:
libraryTableAda pter1.Fill(libr ary1._Library);
libraryTableAda pter1.Insert(re sult, 1, 0, 0, 0, 0, "",
"", "", "", 2000);
libraryTableAda pter1.Update(li brary1._Library );
library1._Libra ry.AcceptChange s();
When my program finishes, however, there is nothing new. The row was never
added to the actual db.
libraryTableAda pter1 is a TableAdapter
library1 is a DataSet
result is a string
PS: This is in VS2005.
Comment