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
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
50 - 7 = ?
Subscribe to this entry?

 
 [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 May 21 07:01:31 2024 UTC