| | |
Frontend HTML, Backend MS Access Database??
Please support our Database Design advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
![]() |
•
•
Join Date: Apr 2005
Posts: 9
Reputation:
Solved Threads: 0
Access is not the best choice for this kind of application. Unless you are required to use access (part of a class assignment or something) you would be better off looking into either Oracle or Microsoft Structured Query Language (SQL) Server. Those applications are built for large scale databases, Access is built to handle small-scale applications. Hope this helps!
Richard
Richard
•
•
Join Date: Apr 2005
Posts: 3
Reputation:
Solved Threads: 0
•
•
•
•
Originally Posted by rhenerlau
Access is not the best choice for this kind of application. Unless you are required to use access (part of a class assignment or something) you would be better off looking into either Oracle or Microsoft Structured Query Language (SQL) Server. Those applications are built for large scale databases, Access is built to handle small-scale applications. Hope this helps!
Richard
I use asp , but this will get you connected to the database from then on its standard sql language (just about )
Set cnDatabase = Server.CreateObject("adodb.connection")
cnDatabase.Open "DBQ=" & "C:\InetPub\wwwroot\Database\db.mdb" & ";Driver={Microsoft Access Driver (*.mdb)};DriverId=25;MaxBufferSize=8192;Threads=20;", "username", "password"
set rsRecordset = cnDatabase.Execute("Select Count(*) AS RecCount From Tips")
numRec = rsRecordset("RecCount")
set rsRecordset = nothing![]() |
Similar Threads
- how to connect ms access database to html webpage (JavaScript / DHTML / AJAX)
- Two Issues With Access Database App (MS Access and FileMaker Pro)
- MS Access database and java (Java)
Other Threads in the Database Design Forum
- Previous Thread: Help
- Next Thread: Can anyone help me here!
| Thread Tools | Search this Thread |





