D
Douglas J. Steele
I'm not sure that checking TData.Supports(adUpdate) actually means that your
specific connection is updatable: I think it just means that the OleDb
provider you're using supports updates.
Usually ASP runs under the security context of IUSR_<name of computer>. Make
sure that that id has the correct permissions on the folder where the MDB
file exists. You require a minimum of Read, Write and eXecute, and Delete is
usually recommended as well. (Giving "Change" access is usual). This is
because you need to be able to create the logging file (.LDB) in that folder
in order to be able to update the database.
specific connection is updatable: I think it just means that the OleDb
provider you're using supports updates.
Usually ASP runs under the security context of IUSR_<name of computer>. Make
sure that that id has the correct permissions on the folder where the MDB
file exists. You require a minimum of Read, Write and eXecute, and Delete is
usually recommended as well. (Giving "Change" access is usual). This is
because you need to be able to create the logging file (.LDB) in that folder
in order to be able to update the database.