Ask a Question related to ASP Database, Design and Development.
-
jcfrykland #1
Updating Access DB in ASP
I am trying to resolve the following error message when
trying to update an Access 2000 database in ASP:
Microsoft JET Database Engine (0x80040E09)
Cannot update. Database or object is read-only.
The environment is XP Professional, IIS 5.0, and Access
2000 all running on the same processor. Eventually, I
want to move this application to my website. All
information and suggestions will be welcomed.
John
jcfrykland Guest
-
MS Access Database not Updating
Hi, I am working on creating dynamic home pages with Coldfusion MX on the server, Dreamweaver for developing and Microsoft Access as the backend... -
Updating MS Access Query
Can you update a MS Access Query (its simply a join of two tables) using a form and <cfupdate>, or do you have to update the underlying tables. I... -
SQL not Updating Access Database
Hi, I have an ASP page that updates an Access 2000 database. It doesnt seem to update the date field of the table. Here is the SQL: Update... -
Access db not updating.
My client moved to a new server now my asp code will not update his Access mdb. There are no error messages. -
Updating a remote web Access DB
Here's one possible scenario: 1. Create an ASP page that allows the user to upload the datafile. 2. Create another ASP page that has a link... -
Chris Leonard #2
Re: Updating Access DB in ASP
Have you tried doing this using SQL ?
I had loads of problems doing something similar, I now use straight SQL,
i.e.
Update mytable set myfield = 'mydate' where x = 1
or inserts:
Insert into mytable (field1, field2) values (value1, value2)
Maybe this won't solver your problem, but it solved mine, hope it helps you.
Chris
Chris Leonard Guest
-
Bob Barrows #3
Re: Updating Access DB in ASP
[url]http://www.aspfaq.com/show.asp?id=2326[/url]
jcfrykland wrote:> I am trying to resolve the following error message when
> trying to update an Access 2000 database in ASP:
>
> Microsoft JET Database Engine (0x80040E09)
> Cannot update. Database or object is read-only.
>
> The environment is XP Professional, IIS 5.0, and Access
> 2000 all running on the same processor. Eventually, I
> want to move this application to my website. All
> information and suggestions will be welcomed.
>
> John
Bob Barrows Guest



Reply With Quote

