亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

asp 通用數(shù)據(jù)庫(kù)連接過(guò)程函數(shù)

 更新時(shí)間:2007年08月08日 11:58:22   作者:  
<%
'******************************
'函數(shù):ConnectionMssql(ConnStr)
'參數(shù):ConnStr,數(shù)據(jù)庫(kù)連接代碼
'作者:阿里西西
'日期:2007/7/13
'描述:通用數(shù)據(jù)庫(kù)連接過(guò)程
'示例:<%=ConnectionMssql("Provider = Microsoft.Jet.OLEDB.4.0;Data Source = test.mdb")%>
'******************************
Sub ConnectionMssql(ConnStr)
On Error Resume Next
Set objConn = Server.Createobject("ADODB.Connection")
objConn.ConnectionTimeout = 12
objConn.ConnectionString = Trim(ConnStr)
objConn.Open
    If objConn.Errors.Count = 0 Then
 Else
  Response.Write "ConnectionMssql","數(shù)據(jù)連接失敗,請(qǐng)檢查配置文件!"
  Response.End
 End If
End Sub
%>

相關(guān)文章

最新評(píng)論