sql >> Databasteknik >  >> RDS >> PostgreSQL

Perl - DBI och .pgpass

JA! Det FINNS ett bättre sätt.

Byt enkelt mellan test- och liveservrar.

  • behåll lösenord i ~/.pgpass (för psql &pg_dump )
  • annan konfigurationsinformation i ~/.pg_service.conf (eller /etc/pg_service.conf )

t.ex.:

#!/usr/bin/perl -T
use strict;
use warnings;
use DBI;

my $dbh = DBI->connect
(
    #"dbi:Pg:service=live",
    "dbi:Pg:service=test",
    undef,
    undef,
    {
        AutoCommit => 0,
        RaiseError => 1,
        PrintError => 0
    }
) or die DBI->errstr;

~/.pg_service.conf:

# http://www.postgresql.org/docs/9.2/static/libpq-pgservice.html
# /usr/local/share/postgresql/pg_service.conf.sample
# http://search.cpan.org/dist/DBD-Pg/Pg.pm
#

[test]
dbname=hotapp_test
user=hotusr_test
# localhost, no TCP nonsense needed:
host=/tmp

[live]
dbname=hotapp_live
user=hotusr_live
host=pgsql-server.example.org

~/.pgpass:

# http://www.postgresql.org/docs/9.2/static/libpq-pgpass.html
# hostname:port:database:username:password
localhost:5432:hotapp_test:hotusr_test:kq[O2Px7=g1
pgsql-server.example.org:5432:hotapp_live:hotusr_live:Unm£a7D(H


  1. MySql skillnad mellan två tidsstämplar i dagar?

  2. Hämta data från lagrad procedur med Entity Framework

  3. Problem med mysql gem på osx 10.6.8

  4. Laravel till SQL Server (sqlsrv). [PDOException] kunde inte hitta drivrutinen