7
Whenever I see someone preparing some configuration for database, I see appearing the term DSN.
I see it happening in the parameters of PDO
(class to connect to PHP Database).
Example:
$dsn = 'mysql:host=localhost; dbname=test';
$pdo = new PDO($dsn);
Is this term DSN a nomenclature used for databases? What does this term mean?
DSN
Data Source Name– JcSaint