using Access db for website - thoughts?

B

Bobby Edward

I am creating an ASP.NET website that might have 50 concurrent users using
it at 1 time (minimal data.) Will Access be ok for this or will the
concurrent users accessing data pages blow up the site? Thanks...
 
P

Peter Bromberg [C# MVP]

if you cannot install SQL Server or SQLEXPRESS ( the free version of SQL
SERVER 2005), then you might try SQLite, which is a lot more performant than
MS Access - even though it too is file-based.
-- Peter
Site: http://www.eggheadcafe.com
UnBlog: htp://petesbloggerama.blogspot.com
Short Urls & more: http://ittyurl.net
 
P

Phil H

I am creating an ASP.NET website that might have 50 concurrent users using
it at 1 time (minimal data.)  Will Access be ok for this or will the
concurrent users accessing data pages blow up the site?  Thanks...

There is an alternative if the data is only being read and not written
to (except perhaps occasionally by an administrator), namely putting
the data into XML files. The number of concurrent users doesn't matter
then and it saves having to bother with SQL server.

If that's not the case, is there any reason for not using SQL Server
2005 Express? It's free and is not restricted in respect of concurrent
users so long as it is running on the same server as the web site
(i.e. local connection only).
 

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

Members online

Forum statistics

Threads
473,764
Messages
2,569,567
Members
45,041
Latest member
RomeoFarnh

Latest Threads

Top