File: gda-tester.php

package info (click to toggle)
libgda5 5.2.10-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 76,168 kB
  • sloc: ansic: 495,319; xml: 10,486; yacc: 5,165; sh: 4,451; makefile: 4,095; php: 1,416; java: 1,300; javascript: 1,298; python: 896; sql: 879; perl: 116
file content (66 lines) | stat: -rw-r--r-- 1,982 bytes parent folder | download | duplicates (8)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
session_cache_limiter('nocache');
header('Content-type: text/html; charset=UTF-8');
header('Cache-Control: public, no-cache');

include_once "gda-utils.php";
include_once "gda-exception.php";
include_once "gda-config.php";

$test_connections = false; // set to true to enable each connection testing

echo "<h1>Gda connections tester</h1>\n\n";

if (! try_include ("MDB2.php", true)) {
	echo "<b>ERROR:</b> The PEAR MDB2 extension is required\n";
	echo "<p>If you want to use the implementation provided in Libgda, then add a directive as following to the <tt>gda-config.php</tt> file:</p>";
	echo "<p><tt>set_include_path (get_include_path().\":PEAR_MDB2\");</tt></p>";
	echo "<p>Note that you still need to install the PEAR package (named 'php-pear' on a Debian system).</p>";
	exit (1);
}

if (! extension_loaded ("SimpleXML")) {
	echo "<b>ERROR</b>: The SimpleXML extension is required\n";
	echo "<p>You need to configure PHP to include this extension.</p>";
	exit (1);
}

function handle_pear_error ($res)
{
	if (PEAR::isError($res)) {
		$cause = "<p><b>Standard Message:</b> ".$res->getMessage()."</p>\n". 
			"<p><b>User Information:</b> ".$res->getUserInfo()."</p>\n".
			"<p><b>Debug Information:</b> ".$res->getDebugInfo()."</p>";
		throw new GdaException($cause, false);
	}
}

echo "\n";

if (! isset ($cnc, $dsn)) {
	echo "<p><b>ERROR:</b> No connection defined!</p>\n";
	exit (1);
}

if ($test_connections) {
	foreach ($cnc as $dbname => $dbpass) {
		echo "<h2>Connection '".$dbname."'</h2>";
		try {
			$mdb2 = MDB2::connect($dsn[$dbname]);
			handle_pear_error ($mdb2);
			echo "OK.\n";
		}
		catch (GdaException $e) {
			echo "FAILED!\n".$e->getMessage()."\n";
		}
	}
}
else {
	echo "<p>Connections listed below but not tested (set <tt>\$test_connections</tt> to <tt>true</tt> in the <tt>gda-config.php</tt> file to change):</p>\n";
	echo "<ul>\n";
	foreach ($cnc as $dbname => $dbpass) {
		echo "<li>Connection '".$dbname."'</li>\n";
	}
	echo "</ul>\n";
}
?>