/usr/share/libgda-4.0/php/gda-config.php is in libgda-4.0-common 4.2.8-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | <?php
/*
 * initial shared secret: will have to be passed as the SECRET argument when opening
 * the connection from Libgda
 */
$init_shared = "MySecret";
/*
 * declared connections: for each connection which can be opened by Libgda, the
 * the connection's password and the real connection's DSN need to be added respectively
 * to the $cnc and $dsn arrays, using the connection name as a key. The connection name
 * and password have no significance outside of the Libgda's context and be arbitrary.
 * However the real connection's DSN need to be valid for the PEAR's MDB2 module, as
 * per http://pear.php.net/manual/en/package.database.mdb2.intro-dsn.php
 *
 */
/* sample connection cnc1 */
$cnc["cnc1"] = "MyPass1";
//$dsn["cnc1"] = "pgsql://vivien@unix(/var/run/postgresql)/sales";
$dsn["cnc1"] = "pgsql://unix(/tmp)/sales";
/* sample connection cnc2 */
$cnc["cnc2"] = "MyPass2";
$dsn["cnc2"] = "mysql://user@unix(/path/to/socket)/sales";
?>
 |