How can I incorporate a access file to coldfusion and dreamweaver then onto my website?
I Have Cold Fusion So How Do I Import My Access File In There Then, On To Dreamweaver?
- No trackbacks yet.
How can I incorporate a access file to coldfusion and dreamweaver then onto my website?
Access, Cold, Dreamweaver, File, Fusion, Have, Import, Then, There
This entry was posted on Wednesday, June 24th, 2009 and is filed under Coldfusion Questions. You can follow any responses to this entry through RSS 2.0. You can leave a response, or trackback from your own site.
Fusion theme by digitalnature | powered by WordPress
Entries (RSS) and Comments (RSS) ^
Powered by Yahoo! Answers
#1 by Shaj at June 24th, 2009
To connect to an MS Access databse use this code:
DBTYPE="dynamic"
DBTYPE="dynamic"
CONNECTSTRING="Driver={Microsoft Access Driver (*.mdb)};Dbq=c:dbmydb.mdb;Uid=Admin;Pw...
>
SELECT SeekId, SeekUsername, SeekPassword from Seekers
Incase you wan’t to use an extended path use this code.
CONNECTSTRING="Driver={Microsoft Access Driver (*.mdb)};Dbq=#ExpandPath('..bettergigc...
>
SELECT SeekId, SeekUsername, SeekPassword from Seekers
Both the connections that I have described above are DNS-less connection or ready-to-connect. So you need not setup any DSN.