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