1

我在使用 ADO 连接到 postgresql db 的 windows 框中的 excel 中有一个 vba 脚本。我必须在 Mac 上做同样的事情。通过阅读 SO 上的帖子,我已经: - 将 odbc 驱动程序(openlink)下载到 mac - 设置 DSN 并成功连接到数据库

现在到vba更改。我在 SO、postgresql.org 站点、openlinks 和其他一些地方搜索了一个明确的示例,但还没有找到。这是windows上相关的vba代码:

Dim cnn As New ADODB.Connection
Dim rst As New ADODB.Recordset
Dim strSomeValue As String

cnn.Open "DRIVER={PostgreSQL ANSI};DATABASE=<db>;SERVER=<target>;PORT=<port>;UID=<myusername>;PWD=<mypwd>"
4

0 回答 0