Re: can somebody show me a MDB2 dsn with port number? - Mailing list pgsql-php

From Jeff MacDonald
Subject Re: can somebody show me a MDB2 dsn with port number?
Date
Msg-id 1148148576.12905.13.camel@dionysus.zoidtechnologies.com
Whole thread Raw
In response to can somebody show me a MDB2 dsn with port number?  (kmh496 <kmh496@kornet.net>)
List pgsql-php
greetings,

your question would be more appropriate to one of the PEAR lists, but I
will answer it anyway.

On Sun, 2006-05-21 at 02:49 +0900, kmh496 wrote:
> hello pgsql-php,
>
> i looked for a sample of MDB2 dsn array with port number, couldn't find
> one.
> my dsn without it is:
> $dsn_postgresql=array(
>     'phptype' => "pgsql",
>     'username' => $pg_username,
>     'password' => $pg_password,
>     'hostspec' => "localhost",
>     'database' => $pg_database
> );
> $options = array(
>     'debug'       => 9,
>     'portability' => DB_PORTABILITY_ALL,
> );
>
> the MDB2 docs have just
>
>
> Most variations are allowed:
>
>
> 1     phptype://username:password@protocol+hostspec:110//usr/db_file.db?mode=0644
[..snipped..]
> can somebody cut and paste me one please?
> thanks everybody.
> joseph.

http://pear.php.net/manual/en/package.database.mdb2.intro-dsn.php

specifically, look at the line that describes the "hostspec" ("Host
Specification").

regards,
J
--
Jeff MacDonald
Zoid Technologies, http://zoidtechnologies.com/


pgsql-php by date:

Previous
From: kmh496
Date:
Subject: can somebody show me a MDB2 dsn with port number?
Next
From: Jeff MacDonald
Date:
Subject: Re: can somebody show me a MDB2 dsn with port number?