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: 3000807 |
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 What is the purpose of the rel attribute in a link tag in HTML?
- 2 When should I run composer dump-autoload -o?
- 3 How to check if Composer is installed?
- 4 Building Custom, Reusable Hooks in React
- 5 "This setting is managed by your administrator" in Windows Defender
- 6 How do you create a scrollbar in an HTML element?
- 7 A Deep Dive into `continue` with Numeric Arguments for Multi-Level Loops
- 8 Functional Programming Paradigms with PHP's Associative Arrays
- 9 Automating System Tasks in Linux with Cron and Systemd Timers
- 10 What is the class syntax in JavaScript and how does it relate to prototypes?
- 11 How do you embed audio and video in HTML5?
- 12 How to handle payment gateways like Stripe or PayPal in Laravel?
- 13 Refactoring God Switches: From Complex Conditionals to Clean Code
- 14 How do you iterate over an object in JavaScript?
- 15 What are the different types of loops available in JavaScript?
Latest Tutorials
-
- Go language practical GraphQL
- 3804 2024-04-19
-
- 550W fan master learns JavaScript from scratch step by step
- 5127 2024-04-18
-
- Getting Started with MySQL (Teacher mosh)
- 3203 2024-04-07
-
- Mock.js | Axios.js | Json | Ajax--Ten days of quality class
- 3764 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
?
%>

Related recommendations


Popular Recommendations

