PostgreSQL, a mature database distribution that runs primarily on Linux/Unix distros has been porte
PostgreSQL, a mature database distribution that runs primarily on Linux/Unix distros has been ported to Win32. The win32 port is still Beta.
API Declarations
Dim rs As ADODB.Recordset
Rate PostgreSQL, a mature database distribution that runs primarily on Linux/Unix distros has been porte
(2(2 Vote))
Set conn = New ADODB.Connection
Set rs = New ADODB.Recordset
conn.CursorLocation = adUseClient
conn.ConnectionString = "Driver=PostgreSQL;Server=127.0.0.1;Port=5432;User Id=postgres;Password=pascal;Database=test;"
conn.Open
Set rs = conn.Execute("select * from testtable1")
End Function
Private Sub Command1_Click()
Call connectpgsql
Set DataGrid1.DataSource = rs
End Sub
PostgreSQL, a mature database distribution that runs primarily on Linux/Unix distros has been porte Comments
No comments yet — be the first to post one!
Post a Comment