Tag Archive for access

IIS 7 Problem with classic ASP and MS Access Database?

Question by ARNYMA: IIS 7 Problem with classic ASP and MS Access Database?
I have windows vista home premium and IIS7 installed on it. Classic ASP pages are working fine,but when I try to connect to Access database,I get the error, I did some research on internet, and set the permission for TEMP directory,and ApplicationPool, but still get the same erro.Any Ideas?

Best answer:

Answer by dhvrm
There are any number of possibilities here, from that you are using relative paths in a Server.MapPath call — relative paths aren’t allowed under IIS 7’s architecture, at least not in the Server.MapPath method — to not having installed MDAC or the proper data access components on your computer to power your connections & queries.

Add your own answer in the comments!

Most modern computers provide large number of general-purpose registers and few mem access instructions, why?

Question by Chris: Most modern computers provide large number of general-purpose registers and few mem access instructions, why?
Full Question: Most modern computers provide a large number of general-purpose registers and very few memory access instructions. Most instructions use these registers to hold data instead of
memory. Explain clearly and coherently the advantages to such an architecture?

Best answer:

Answer by Chip
Put simply: speed. The computer doesn’t have to waste time looking up data in memory if it already has the data sitting right there in the register.

Know better? Leave your own answer in the comments!