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: 3000633 |
Download: 197 |
Latest Downloads
Red Alert Online
Delta Force
Pokémon UNITE
Fantasy Aquarium
Girls Frontline
Wings of Stars
Little Flower Fairy Fairy Paradise
Restaurant Cute Story
Shanhe Travel Exploration
Love and Producer
24 HoursReading Leaderboard
- 1 Why is My First Go `database/sql` Query So Much Slower Than Subsequent Queries?
- 2 Why Isn't My @font-face Working in Firefox?
- 3 Planet Zoo: 8 Best Ways To Make Money
- 4 Exploring the World of Python Programming
- 5 How Can I Efficiently Audit Historical Data Changes in SQL Server While Maintaining Performance?
- 6 How Can I Add Items to an IEnumerable?
- 7 Sludge Management and Dewatering Overview by Global Development and Growth
- 8 What are the Best Alternatives to PHP_Excel for Exporting and Importing Excel Files with Customization?
- 9 How to Efficiently Convert Enum Types to Strings in C and C ?
- 10 Why Doesn't $.load Post Form Data Correctly, and How Can I Fix It Using jQuery?
- 11 CHRISTMAS IS COMING!!
- 12 How and When Does __attribute__((constructor)) Initialize Code in Shared Libraries?
- 13 How Can I Access and Manipulate Iframe Content Using JavaScript/jQuery, Considering Cross-Origin Restrictions?
- 14 How to Correctly Parse Unix Timestamps in Go?
- 15 LEFT JOINs in SQL Server: What's the Difference Between `ON` and `WHERE` Clauses?
Latest Tutorials
-
- Go language practical GraphQL
- 2399 2024-04-19
-
- 550W fan master learns JavaScript from scratch step by step
- 3815 2024-04-18
-
- Getting Started with MySQL (Teacher mosh)
- 2028 2024-04-07
-
- Mock.js | Axios.js | Json | Ajax--Ten days of quality class
- 2809 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
%>