The manual doesn't tell you that you can use spaces, so simply don't do it.

--Wez.

On 4/27/06, Kevin Waterson <[EMAIL PROTECTED]> wrote:
> Not a bug, but inconsistant behavior in PDO when calling
> $dsn = new PDO("sqlite: dbname.sdb");
>
> The space after the colon _should_ be encoded but if not it fails and
> needs correctly to read
> $dsn = new PDO("sqlite:dbname.sdb");
>
> Pierre pointed to a user note in the manual  
> http://www.php.net/manual/en/ref.pdo.php
>
> 01-Jan-2006 04:09
> Watch out for putting spaces in the DSN
> mysql:host=localhost;dbname=test works
> mysql: host = localhost; dbname=test works
> mysql: host = localhost; dbname = test doesn't work...
>
> Here we see the inconsistancy at work.
> perhaps E_STRICT would be a better way to handle this perhaps
> some other.
>
> Kind regards
> Kevin
>
> --
> "Democracy is two wolves and a lamb voting on what to have for lunch.
> Liberty is a well-armed lamb contesting the vote."
>
> --
> PHP Internals - PHP Runtime Development Mailing List
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>

--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to