If your server supports ASP/Access, and you're comfortable with Access, and you're not running a huge, commercial site, Access will be just fine.
If you want/need to learn MySQL/PHP, you certainly could. If your server doesn't support ASP/Access, you'll need to.
But either will work.
Main Topics
Browse All Topics





by: KenAdneyPosted on 2003-04-21 at 09:45:38ID: 8367548
Here's my .02...
MySQL has the following advantages:
a) cost (free)
b) platform independence (unix or IIS)
c) ability to handle large datasets (Access bogs down around 10,000 records)
d) distributed load (can be run on a separate server, distributing the load makes things faster)
Access has the following advantages:
a) you know it
b) it has easy queries and reports built into it
Everything else is the same. You're still issuing SQL commands either to access or add to the data (SELECT * FROM), or to create new tables (CREATE xxxx).
Personally, I use Access a lot because it's fast & easy & I don't have to install any components on the server. If I were starting over, I'd be using PHP/MySQL.