an error

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I try to delete or insert to MS Access table through Web application - the error occurs in statement

string s = "Provider=Microsoft.Jet.OLEDB.4.0;Persist Security Info=False;Data Source=C:\\izg\\db1.mdb;User ID=Admin;"
....
int i = oledBCommand1.ExecuteNonQuery;

The error message is

"Could not delete from specified tables

I don't know what is real crucial place
Jul
 
Juli:

There could be a permission problem, can you do inserts and updates? If so,
then I'd check for the use of a Reserved word in your table..that usually
causes some drama.

See if it's not one of those two things and if not, we'll try to figure it
out from there.
Juli said:
I try to delete or insert to MS Access table through Web application - the error occurs in statement
"
string s = "Provider=Microsoft.Jet.OLEDB.4.0;Persist Security
Info=False;Data Source=C:\\izg\\db1.mdb;User ID=Admin;";
 
Back
Top