View Single Post
  #1 (permalink)  
Old 09-30-04, 03:24 AM
gop373 gop373 is offline
Newbie Coder
 
Join Date: Sep 2004
Posts: 47
Thanks: 0
Thanked 0 Times in 0 Posts
Asp and Microsoft Access 2002 problem

Hi I have some problem about ASP and Microsoft Access 2002. I just installed Microsoft Access 2002.

I use IIs to run ASP. When I wrote Select method. There is no problem. But the problem is when I wrote Delete method I got message "Could not delete from specified tables."
and when I wrote update method I got message "Cannot update. Database or object is read-oject." and sometime I got message

connect.asp could not use "; file already in use.
This is my connect.asp file
<%
set conn=server.createobject("adodb.connection")
conn.open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="&server.mappath("db1.mdb")
%>
I think this file don't have a problem because when I use with Microsoft access 2000 there is no problem. I think the problem i smicrosoft access 2002

Please help

Last edited by gop373; 09-30-04 at 04:03 AM.
Reply With Quote