Access开发培训
网站公告
·Access专家课堂QQ群号:151711184    ·Access快速开发平台下载地址及教程    ·欢迎加入Access专家课堂微信群!    ·如何快速搜索本站文章|示例|资料    
您的位置: 首页 > 技术文章 > ADP及SQL SERVER

access Adp项目连接SQL server方法/函数

时 间:2011-08-19 22:33:06
作 者:wangjerry   ID:21513  城市:上海
摘 要:Access Adp项目连接SQL server方法/函数
正 文:

Access Adp 项目连接SQL 函数,
使用方法:

1.新建Access Adp项目
2.在模块中新建一个模块,粘贴以下代码
3.新建一个登录窗体,调用即可

Public Function saConnect(ByVal strServer As String, ByVal strDatabase As String, _
ByVal strUsername As String, ByVal strPassword As String) As Boolean

On Error GoTo err

Connect:
Dim strCn As String

strCn = "PROVIDER=SQLOLEDB.1;"

'strCn = strCn & "Workstation Id = HY"
strCn = strCn & "DATA SOURCE=" & strServer & ";"
strCn = strCn & "INITIAL CATALOG=" & strDatabase & ";"
strCn = strCn & "USER ID=sa;"
strCn = strCn & "PASSWORD=;"

strCn = strCn & "PERSIST SECURITY INFO=TRUE;"
strCn = strCn & "Use Procedure for Prepare=1;"
strCn = strCn & "Auto Translate=True;"
strCn = strCn & "Packet Size=4096;"

'Debug.Print strCn
CurrentProject.OpenConnection strCn


theConnect = True

Exit Function

err:

MsgBox "错误代码: " & err.Number & vbCrLf & vbCrLf & _
"错误描述: " & err.Description, vbCritical + vbOKOnly, theTitle

End Function

 

实例补充

http://down.qiannao.com/space/file/wangjerry/share/2011/8/19/Jerrysoft.rar/.page



Access软件网官方交流QQ群 (群号:54525238)       Access源码网店

常见问答:

技术分类:

相关资源:

专栏作家

关于我们 | 服务条款 | 在线投稿 | 友情链接 | 网站统计 | 网站帮助