Fwd: problem with using VBA connection string to postgresql - Mailing list pgsql-general

From Łukasz Jarych
Subject Fwd: problem with using VBA connection string to postgresql
Date
Msg-id CAGv31oddgJm01CrooAmCR5jPfthBPTU8VxyMCgyXdR=9kDuDBQ@mail.gmail.com
Whole thread Raw
In response to problem with using VBA connection string to postgresql  (Łukasz Jarych <jaryszek@gmail.com>)
Responses Re: Fwd: problem with using VBA connection string to postgresql  (Adrian Klaver <adrian.klaver@aklaver.com>)
List pgsql-general
Maybe some security here? 

Best,
Jacek 


Hi Guys,

I am using code :

Sub copyingSchemas()
Dim dbCon As Object
Dim rst As Object
Dim username, pass, strConnect As String
username = Environ("username")
pass = "PasswordAccess"
Set dbCon = CreateObject("ADODB.Connection")
Set rst = CreateObject("ADODB.Recordset")
'''You can use a pass-through query to list the table names from your SQL Server database. Open a recordset based on that query. Then loop through the recordset rows and link each table.
username = "postgres"
pass = "1234"
strConnect = "ODBC;DRIVER={PostgreSQL Unicode};" & _
"DATABASE=AccessLog;" & _
"SERVER=localhost;" & _
"PORT=5432;" & _
"UID=" & username & ";" & _
"PWD=" & pass & ";" & _
"Trusted_Connection=Yes;"
dbCon.ConnectionString = strConnect
dbCon.Open
Dim strSQl As String
strSQl = "SELECT * FROM t_cpuinfo();"
rst.Open strSQl
dbCon.Close

End Sub

error is :




Linked Table connection string which is working :



Why? 

Please help,
Best,
Jacek

 

Attachment

pgsql-general by date:

Previous
From: Łukasz Jarych
Date:
Subject: problem with using VBA connection string to postgresql
Next
From: Adrian Klaver
Date:
Subject: Re: Fwd: problem with using VBA connection string to postgresql