Using Access Database (*.mdb or *.accdb) is very simple.
But I wonder about performance in comparison to using SQL Server in a production app with medium traffic websites!
Is it comparable to using SQLite with PHP?
Can you help me to choose?
-
3just forget the word "Access" anytime you talk about "Production". SQL Server as backend database for web sites is ok, used in StackOverflow as well and as you see it out/over performs :)Davide Piras– Davide Piras2011-09-16 03:18:51 +00:00Commented Sep 16, 2011 at 3:18
Add a comment
|
1 Answer
I have 4+ years of web experience and my advice is do NOT go with Access on web, and even on desktop for apps with a considerable number of users, SQL Server is far stronger, faster, more scalable and is easy to use too...
You will find that using a different DB is not that different in the end, it just depends on your data access provider (EntityFramework, ADO .NET, etc)