End Google Ads 201810 - BS.net 01 --> Hello, I'm new to the forum here. I'm currently using the Windows mobile 6 to create a database from the SQL Compact database edition. I'm currently facing this problem clearing of database. This is the code snippet below. I'm grateful for any help given. Thanks.



conn.Open();

SqlCeCommand cmd = conn.CreateCommand();
//cmd.CommandText = " DROP TABLE ********";
cmd.CommandText = "DELETE from ******** where No = @No";
//=@No, DateAndTime=@DateAndTime,********Information=@********Information ";

-- cmd.ExecuteNonQuery(); -- This is the line where the error surfaced. "SqlCeException was mishandled (A parameter is missing. [ Parameter ordinal = 1 ] )"


this.*******();
conn.Close();


Codenoobie