an error

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
 
W

William Ryan eMVP

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;";
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top