Hi,
I have questions
on insert a new data, i wrote the codes as below and i run it. It's no
problem on the codes part, but when i open my order table from
order.sdf file, it is empty record.
do i miss some codes or do i write it wrong why my order table is empty record since i added "123" for it does anyone know about this
private void addbutton1_Click(object sender, EventArgs e)
{
ABCDBDataSetTableAdapters.orderTableAdapter ota = new this.ABCDBDataSetTableAdapters.orderTableAdapter();
ABCDBDataSet.orderRow newOrderRow = aBCDBDataSet.order.NewOrderRow();
newOrderRow.Items = "123";
aBCDBDataSet.order.Rows.Add(newOrderRow);
ota.Update(aBCDBDataSet.order);
}

question on Insert a New Data into .sdf file,need help!!
ATM
Check the following to see if one of the issues applies to your problem:
http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=427451&SiteID=1
Roger Garrett
Thank you for the link,i hope can find the solution from it.