current location: Home > Download > Learning resources > Web page production > "How to connect to the database with Dreamweaver"

"How to connect to the database with Dreamweaver"
Classify: Learning materials / Web page production | Release time: 2018-01-08 | visits: 3000706 |
Download: 197 |
Latest Downloads
Horror Beat Phase Maker
Himalayan Children
Zebra AI
Supermarket Manager Simulator
Red Alert Online
Delta Force
Pokémon UNITE
Fantasy Aquarium
Girls Frontline
Wings of Stars
24 HoursReading Leaderboard
- 1 WWE 2K25 Can’t Connect to Servers? Here’re Some Solutions
- 2 How to Use Voice Access in Windows 11
- 3 What is the smartest AI today?
- 4 Is ChatGPT still the best?
- 5 RoboCop: Rogue City Save File Location & Game File Protection
- 6 Which AI has the highest IQ?
- 7 Unlock the Power of AI Tools for Enhanced Efficiency and Productivity
- 8 Uninstall Xiaomi Game Center: Reclaim Your Device & Privacy!
- 9 Uninstall Xiaomi Game Center: Free Up Space & Boost Performance!
- 10 Windows 11 Ene.sys Driver: Troubleshooting & Solutions
- 11 Which AI is better than ChatGPT?
- 12 What Are the Key Features of ThinkPHP's Built-in Testing Framework?
- 13 How to Use ThinkPHP for Building Real-Time Stock Market Data Feeds?
- 14 Which artificial intelligence is the best?
- 15 What Are the Key Considerations for Using ThinkPHP in a Serverless Architecture?
Latest Tutorials
-
- Go language practical GraphQL
- 2974 2024-04-19
-
- 550W fan master learns JavaScript from scratch step by step
- 4316 2024-04-18
-
- Getting Started with MySQL (Teacher mosh)
- 2329 2024-04-07
-
- Mock.js | Axios.js | Json | Ajax--Ten days of quality class
- 3072 2024-03-29
Connect with dsn and have username and password:
<%
set conn = server.createobject("adodb.connection")
conn.open "yourdsnname","username","password"
%>
Connect with the actual absolute database path:
<%
set conn = server.createobject("adodb.connection")
strconn="driver=; "
strconn=strconn & "dbq=e:\yanhang\database.mdb"
conn.open strconn
%>
Connect with the actual database relative path:
<%
set conn = server.createobject("adodb.connection")
strconn="driver=; "
strconn=strconn & "dbq=" & server.mappath("/database/yanhang.mdb")
conn.open strconn
%>
