Refresh a connection in Excel to SQL Server (with password) using VBA(使用 VBA 在 Excel 中刷新与 SQL Server 的连接(使用密码))
问题描述
我有 10 个 Excel 文件通过 OLEDB 连接到 SQL Server,我需要每天手动刷新它们.当我刷新它们时,我需要插入密码.我试图制作一个宏来自动化这个过程,但我没有成功.我做了这个功能来自动化我的一个工作簿:
I have 10 Excel files that are connected to a SQL Server by OLEDB and I need to refresh them everyday one by one manually. When I refresh them I need to insert a password. I tried to make a macro to automate this process, but I didn't succeed. I did this function to automate one of my workbooks:
Sub updateABC()
Workbooks("Teste").Connections("SQL Server_Azure1").OLEDBConnection.Refresh
End Sub
Excel 要求输入 SQL Server 登录密码.有没有办法使用 vba 自动输入这个密码?
And the Excel ask for the password to SQL Server logon. Is there any way to put this password automatically using vba?
谢谢.
推荐答案
Excel中有一种方法不用VBA:
There is a way in Excel without VBA:
- 您可以转到数据然后连接
- 单击顶部连接上的属性
- 点击定义选项卡
- 大约一半的地方有一个保存密码"复选框,您将收到有关密码存储未加密的提示.
- 对此表示同意
- 点击确定
对所有连接执行相同操作
Do the same for all of your connections
然后您可以刷新所有连接,系统将提示您输入每个连接的密码.完成此操作并保存文档后,它不会再次要求您输入密码.
You can then refresh all connections and you will be prompted to enter the password for each connection. Once you do this and save the document it will not ask you for your passwords again.
您还可以在使用"选项卡上勾选打开文件时刷新数据",以在打开工作簿时刷新连接.
You can also tick "Refresh data when opening the file" on the Usage tab to have the connections refreshed when the workbook is opened.
这篇关于使用 VBA 在 Excel 中刷新与 SQL Server 的连接(使用密码)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 VBA 在 Excel 中刷新与 SQL Server 的连接(使用密码)
- 更改自动增量起始编号? 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- SQL 临时表问题 2022-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01