Ask a Question related to ASP Database, Design and Development.
-
Peter #1
Update Error - read only error
I am having a problem Updating a record. I can read the access
database, but when I try to insert a record using
set rs = Server.CreateObject("ADODB.Recordset")
rs.Open "Guestbook", conn, 2, 3
' create new recordset.
rs.AddNew
the rs.Addnew failes with the following error
Microsoft JET Database Engine (0x80040E09)
Cannot update. Database or object is read-only.
I have read/write allowed and the folder/db is not read only, I can
manually enter entries in through access.
I am using IIS 5 on xp, the local web has read/write as well
What am I doing wrong?
Thanks
Peter Guest
-
FCS 2.0 Error - Please read
Connection rejected by server. Reason : : (_defaultRoot_, _defaultVHost_) : Max connections allowed exceeds license limit. Rejecting connection to... -
Error 403 Failed to read heders Error for long-runningCFMAIL and CFINDEX command
I have two different pages with long-running scripts on which I am recieving the following error: Error - 403 Failed to read headers to server:... -
Read error on DVD-ROM
Hi, I have a problem with my dvd-rom here my dmesg: ad0: 117246MB <Maxtor 6Y120L0/YAR41BW0> at ata0-master UDMA133 ad1: 76345MB <MAXTOR... -
Read only error
InDesign CS is frequently making a working InDesign document into a read only file that can only be saved by saving as a file with a different... -
Database is Read-Only Error
The user account that is trying to update the database, typically IUSR_serverName needs to have Modify/Read & Execute/Write NTFS permissions on the... -
Aaron Bertrand - MVP #2
Re: Update Error - read only error
> rs.Open "Guestbook", conn, 2, 3
Use an INSERT statement, not a recordset object ([url]http://www.aspfaq.com/2191[/url])>
> ' create new recordset.
> rs.AddNew
[url]http://www.aspfaq.com/search.asp?q=80040E09[/url]> Microsoft JET Database Engine (0x80040E09)
> Cannot update. Database or object is read-only.
For what user?> I have read/write allowed
--
Aaron Bertrand
SQL Server MVP
[url]http://www.aspfaq.com/[/url]
Aaron Bertrand - MVP Guest



Reply With Quote

