php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #74155 Ability to get parsed DSN
Submitted: 2017-02-23 11:46 UTC Modified: 2017-10-24 08:32 UTC
Votes:11
Avg. Score:4.4 ± 0.5
Reproduced:8 of 9 (88.9%)
Same Version:5 (62.5%)
Same OS:5 (62.5%)
From: sam at rmcreative dot ru Assigned:
Status: Open Package: PDO related
PHP Version: Irrelevant OS: Any
Private report: No CVE-ID: None
Have you experienced this issue?
Rate the importance of this bug to you:

 [2017-02-23 11:46 UTC] sam at rmcreative dot ru
Description:
------------
DSN string is currently parsed internally but isn't exposed via public API. It would be especially useful for database backup tools, migrations etc. where it's important to get database name, username etc.

Test script:
---------------
$connection = new PDO('mysql:host=localhost;dbname=test', $user, $password);

// mysql
echo $connection->getDriverName();

// localhost
echo $connection->getParameter('host');

// test
echo $connection->getParameter('dbname');



Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2017-10-24 08:32 UTC] kalle@php.net
-Package: PDO Core +Package: PDO related
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 26 18:01:31 2024 UTC