CAN i use Access as a database in my website? Is it possible?....will the web hosting company approve that?
You might have MS SQL if you got a windows server. If so that would be the best bet. If you don't - sure Access is fine (I just hope you don't expect a lot of traffic). Access is a solid database but is slow(ish) and can only accept about 10 concurrent users at a time. My advise, all your db-driven pages - before the page loads, hit the DB, Grab the data, and Close your DB connection. you can do this with the ASP function GetRows - which creates a 2dim array of your records. The faster you can get in to the DB, get your data, and get out the better. And by god - make sure you close your Access DB connections or you will get errors constantly because of the DB being opened too many times
A quick side-note, if its a cheap ass hosting plan your on then i would not expect SQL server. it's a mighty large chunk o' change for a MS Sql Server license. But... maybe you got lucky
right ... also .. last time i tried that .. i cant make it work if the access db is relational hope it works for you
ask your host toassis you ifyour host dont assist you with this, change hosts (assist you with giving you access to that file)
You can use access as database, but your server has to support it, you could ask them about it, but if i where you i would use mysql instead.
I was working with MS Access, but not as base for web-application, I used it with Win32 application. For standalone application for windows I think it's best simple/effective solution. For web-application - hm, i think it's' sux. If you will have often record updates, deleting, many visitors - your database will grow and grow up. Better use MSQL server, or Mysql. In this case you will need to migrate data from access. But it's easy to do, if write little script or use comma separated files (.csv)