Can someone please help me with the following problem. I am trying to update an sql datatable to show the changes. But when I run the code below the changes arent saved. I am currently using SQL Express 5.
using
namespace
{
"ERMAN2\\SQLEXPRESS\";persist security info=True;initial catalog=MDatabase");
InitializeComponent();
}
components.Dispose();
#region
#endregion
[STAThread]
Application.Run(
MessageBox.Show("under construction");
MessageBox.Show(" under constructiion ");
{ Form3 F3 =
Mcon.Open();
Movcmd.CommandText = "SELECT * FROM MovTable1";
MovAdapt.SelectCommand = Movcmd;
MovAdapt.Fill(Movset1, "MovTable1");
F3.dataGrid1.DataSource = Movset1;
F3.Show();
---------------------------
any help would be appreciated.......thanks