sql >> Database >  >> RDS >> PostgreSQL

Excel verbinden met PostgreSQL via VBA

Hier is wat code die als referentie kan worden gebruikt. Hoop dat het helpt.

Sub SelectBasic()

        Dim objDb_con
        Dim strSomeValue As String

        Set objDb_con = CreateObject("ADODB.Connection")
        Set Rsdatatype = CreateObject("ADODB.RecordSet")

        glbConnString = Trim(ActiveSheet.Range("B1").Value)
        //Connection string format:Driver={PostgreSQL Unicode};Database=MyDB;server=192.16*.*.**;UID=USERID;Pwd=pasword //comment it
        If glbConnString = "" Then
         MsgBox "Enter the Connection String"
        Else:

        objDb_con.Open glbConnString

        strSql = "select strSomeValue  from SOMETABLE where Something=1"
        Rsdatatype.Open strSql, objDb_con, adOpenKeyset, adLockpessimistic
        If Rsdatatype.EOF = False Then strSomeValue = Rsdatatype.Fields(0).Value
        Rsdatatype.Close

        End If
        objDb_con.Close
    End Sub


  1. PostgreSQL Cloud Vendor Lock-in vermijden

  2. LDAP:Lege binddn en verificatietype worden eenvoudig van geen

  3. MySQL-trigger:verwijderen uit tabel NA VERWIJDEREN

  4. Rails-app-fout - ActiveRecord::PendingMigrationError Migraties zijn in behandeling; voer 'rake db:migrate RAILS_ENV=development' uit om dit probleem op te lossen