|
如果你是用DSN 连接数据库的话,当你打开网页时页面显示以下提示:
' X v; o# a/ Y 错误类型: Microsoft OLE DB Provider for ODBC Drivers (0x80004005) [Microsoft][ODBC 驱动程序管理器] 未发现数据源名称并且未指定默认驱动程序
C1 H" T% H/ o+ r# f* }8 I3 U4 x
4 ?; E! q6 ^. U这个原因最大的可能是:-------你的DSN没有做好! ( L% i0 ~ j! b6 i* C
建立DSN时有三个选择:用户DSN,系统DSN ,和文件DSN ,如果你在用户DSN中做好DSN 连接了,仍发现出现上述问题,那就换成在系统DSN中做一个,就好用了
" ~3 p4 q1 w. A/ H X7 I 另外,在建立DSN的最后一步的对话框中,左下角有个“测试连接”的按钮,可以点击测试一下建立的DSN是否连接成功 # N8 l! j* X; ^) X% D. C
在系统中设置好DSN后,还要在页面中正确书写连接数据库的代码 以下是在ASP网页中连接数据库的代码(DSN的方法)
! G' d" E3 n( A- B7 ~9 B<table width=100%> <% ) Z X- i8 n' ^% t# c
dim conn ,studentRs set conn=Server.Createobject("Adodb.connection") set studentRs=Server.Createobject ("ADODB.Recordset") conn.open "DSN=student;UID=xiaojian;PWD=xiaojian" studentRs.open "select * from zhaoshang",conn do while not studentRs.eof response.write "<tr>" response.write "<td>" & studentRs.Fields("name") &"</td>" response.write "<td>" & studentRs.Fields("people") &"</td>" 9 l0 Z: Y+ ?6 H# s& Q7 t( Q0 x- P
response.write "</tr>" studentRs.movenext loop studentRs.close set studentRs=nothing conn.Close set conn=nothing %> </table> " Z+ r! A* w7 Q" ]6 D+ z- q! i; a! |
! n# e3 E0 m+ T/ N 以上如果还不能解决问题的话,那干脆就不要用DSN连接了吧,用非DSN连接,不经过系统设置,只在ASP页面中直接模仿添加以下代码就可以了: - f1 u% P3 L( l
1.sql数据库连接方法 8 }. F0 S# R# \" N6 W n5 W
<table width=100%> <% dim conn dim connstr dim db,pass_word,User_ID,Data_Source db="mylove" '数据库名称 Pass_word="xiaojian" 'Password=帐号密码 User_ID="xiaojian" 'User ID=登陆帐号 Data_Source="(local)" 'Data Source=服务名称或者ip connStr="Provider=SQLOLEDB.1;Password='"&pass_word&"';Persist Security Info=True;User ID='"&User_ID&"';Initial Catalog='"&db&"';Data Source='"&Data_Source&"'" set conn=server.createobject("ADODB.CONNECTION") conn.open connstr
' C* {! r$ x9 T, j' i- q% i set studentRs=Server.Createobject ("ADODB.Recordset") studentRs.open "select * from zhaoshang",conn do while not studentRs.eof response.write "<tr>" response.write "<td>" & studentRs.Fields("name") &"</td>" response.write "<td>" & studentRs.Fields("people") &"</td>"
4 V r2 t, b# Q response.write "</tr>" studentRs.movenext loop studentRs.close set studentRs=nothing conn.Close set conn=nothing %> </table> 1 x* n% U7 p3 v: l1 N
2.Access数据库连接方法
; a0 \3 A+ x- k7 ~9 e: Z9 J <% dim conn,connstr,time1,time2 time1=timer on error resume next
; W" j. v- e6 M" L5 E1 ?Connstr="DRIVER=Microsoft Access Driver (*.mdb);DBQ=D:/wwwroot/leizhentian/databases/mylove.asp" Set Conn=Server.CreateObject("ADODB.Connection") conn.Open connstr ; T2 Y: W, D+ r: Q8 B8 U. T
If Err Then err.Clear Set Conn = Nothing Response.Write "数据库连接出错,请检查连接字串。" Response.End End If sql="Select * FROM minglu where d_id=1 order by id desc" set rs=server.createobject("adodb.recordset") rs.open sql,conn,1,1 do while not rs.eof response.write rs("name") rs.movenext loop % W4 `9 v' \0 M& `/ O w
rs.close set rs=nothing & k: r. h/ Q3 t' P# W
%>
9 i: u. U( A- @* L2 c" q3。总结 ( H+ D- W" @) o! j; \ X) [2 Y
DSN连接方法可以连接access和sql数据库且方法一样,即DSN连接方法不区分数据库类型
9 ?( Z. n5 v( p ?# i相反,非DSN连接方法区分数据库类型 / x' m: T/ ?- Z- u2 ]* v9 x
access和sql数据库连接的不同之处:
( u6 m7 p! q3 p" Iaccess需要指定数据库路径,而sql不需要指定数据库路径 ' Y c1 u+ S- H5 M! W9 r
这一点虽然简单,但在学习了access数据库后初次接触sql数据库时总觉的应当加上路径什么的,感觉怪怪的,并且由于浅意识里始终认为应当指名数据库路径,所以看了很多sql连接数据库的方法总看不明白,总以为应该在sql服务器上设置些什么,呵呵,浪费了太多的时间了 |