Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Database Read Only Error

Status
Not open for further replies.

lucidity23

Programmer
Feb 14, 2001
99
0
0
US
I am hitting a problem that I do not know if it is server based or if it is just my Access Database.

The asp pages read from the database fine. When you fill out any form on my site that updates a record in the DB, you get a read only error. now, the ASP has been working fine for many months. The only thing I have changed has been the database. I converted it from an Access 98 to an Access2000 DB.

Any input on whether the DB is the prob or the host?
- carpe diem -
 
Are you sure you've set the modes
database.Mode = adModeReadWrite
You may have a recordset...
Are these properties fixed ?
recordset.CursorType
recordset.LockType

I had problems with constants because they wouldn't be known by IE 4, so I couldn't set the permissions on my database.
So I had to use my own constants :

Const adOpenDynamic = 2
recordset.CursorType = adOpenDynamic
I hopes it helps you.
--
X-) Split.
 
when you migrated over to access 2000 you may have accidentally lost edit permissions on your database. May be you have to go and set Update and Insert permissions on the Database or Table
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top