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
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: sam at rmcreative dot ru
New email:
PHP Version: OS:

 

 [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: Tue Mar 19 02:01:28 2024 UTC