词条 | asp与数据库连接 |
释义 | <%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%> <%Response.Buffer=True%> <% IsSqlDataBase=0 '定义数据库类别,0为Access数据库,1为SQL数据库 If IsSqlDataBase=0 Then ''''''''''''''''''''''''' Access数据库 '''''''''''''''''''' datapath ="include/" '数据库目录的相对路径 datafile ="data.mdb" '数据库的文件名 Connstr="Provider=Microsoft.Jet.OLEDB.4.0;Data Source="&Server.mapPath(datapath&datafile)&"" SqlNowString="Now()" SqlChar="'" ''''''''''''''''''''''''''''''''' Else '''''''''''''''' SQL数据库 '''''''''''''''''''' SqlLocalName ="(local)" '连接IP [ 本地用 (local) 外地用IP ] SqlUsername ="sa" '用户名 SqlPassword ="1" '用户密码 SqlDatabaseName="MyDBname" '数据库名 ConnStr = "Provider=Sqloledb;User ID=" & SqlUsername & "; Password=" & SqlPassword & "; Initial Catalog = " & SqlDatabaseName & "; Data Source=" & SqlLocalName & ";" SqlNowString="GetDate()" ''''''''''''''''''''''''''''''''''''' End If On Error Resume Next Set conn=Server.CreateObject("ADODB.Connection") conn.open ConnStr If Err Then err.Clear Set Conn = Nothing Response.Write "数据库连接出错,请检查连接字串。" Response.End End If On Error GoTo 0 %> |
随便看 |
百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。