Add record to Access Database

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am using ASP to insert records into an Access database, and I have two
questions:

(1) The users are ONLY adding records to the database: is there a need to be
concerned about performance given the limits of Access in terms of
simultaneous connections?

(2) What settings do I need to check in Access to make sure that the
database will allow records to be written from a web form (with asp)?

Thanks.
 
bjnova said:
I am using ASP to insert records into an Access database, and I have two
questions:

(1) The users are ONLY adding records to the database: is there a need to be
concerned about performance given the limits of Access in terms of
simultaneous connections?

Depends on the # of users trying to add at the same time. I seriously doubt
you will have problems unless you are talking about hundreds of users adding
at the same time.
(2) What settings do I need to check in Access to make sure that the
database will allow records to be written from a web form (with asp)?

There are no special Access settings you need to make. You need to make
sure though that the Web Server has permissions to the file and has full
rights to the directory the file is in as it will need to create an LDB file
and delete it as needed.

--Steve Huff
 
Thanks!

Steve Huff said:
Depends on the # of users trying to add at the same time. I seriously doubt
you will have problems unless you are talking about hundreds of users adding
at the same time.


There are no special Access settings you need to make. You need to make
sure though that the Web Server has permissions to the file and has full
rights to the directory the file is in as it will need to create an LDB file
and delete it as needed.

--Steve Huff
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top