2006-08-19 09:04:45 +02:00
|
|
|
<?php
|
2005-09-07 14:17:16 +02:00
|
|
|
|
|
|
|
require_once "config.php";
|
|
|
|
|
2013-03-15 16:54:18 +01:00
|
|
|
function db_connect($host, $user, $pass, $db) {
|
|
|
|
if (DB_TYPE == "pgsql") {
|
|
|
|
|
|
|
|
$string = "dbname=$db user=$user";
|
|
|
|
|
|
|
|
if ($pass) {
|
|
|
|
$string .= " password=$pass";
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($host) {
|
|
|
|
$string .= " host=$host";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (defined('DB_PORT')) {
|
|
|
|
$string = "$string port=" . DB_PORT;
|
|
|
|
}
|
|
|
|
|
|
|
|
$link = pg_connect($string);
|
|
|
|
|
|
|
|
if (!$link) {
|
|
|
|
die("Unable to connect to database (as $user to $host, database $db):" . pg_last_error());
|
|
|
|
}
|
|
|
|
|
|
|
|
return $link;
|
|
|
|
|
|
|
|
} else if (DB_TYPE == "mysql") {
|
|
|
|
$link = mysql_connect($host, $user, $pass);
|
|
|
|
if ($link) {
|
|
|
|
$result = mysql_select_db($db, $link);
|
|
|
|
if (!$result) {
|
|
|
|
die("Can't select DB: " . mysql_error($link));
|
|
|
|
}
|
|
|
|
return $link;
|
|
|
|
} else {
|
|
|
|
die("Unable to connect to database (as $user to $host, database $db): " . mysql_error());
|
|
|
|
}
|
|
|
|
}
|
2005-09-07 14:17:16 +02:00
|
|
|
}
|
|
|
|
|
2013-03-22 06:14:55 +01:00
|
|
|
function db_escape_string($link, $s, $strip_tags = true) {
|
2013-03-15 16:54:18 +01:00
|
|
|
if ($strip_tags) $s = strip_tags($s);
|
|
|
|
|
|
|
|
if (DB_TYPE == "pgsql") {
|
2013-03-22 06:14:55 +01:00
|
|
|
return pg_escape_string($link, $s);
|
2013-03-15 16:54:18 +01:00
|
|
|
} else {
|
2013-03-22 06:14:55 +01:00
|
|
|
return mysql_real_escape_string($s, $link);
|
2013-03-15 16:54:18 +01:00
|
|
|
}
|
2005-09-07 14:17:16 +02:00
|
|
|
}
|
|
|
|
|
2006-08-13 06:46:40 +02:00
|
|
|
function db_query($link, $query, $die_on_error = true) {
|
2013-03-15 16:54:18 +01:00
|
|
|
if (DB_TYPE == "pgsql") {
|
|
|
|
$result = pg_query($link, $query);
|
|
|
|
if (!$result) {
|
|
|
|
$query = htmlspecialchars($query); // just in case
|
|
|
|
if ($die_on_error) {
|
|
|
|
die("Query <i>$query</i> failed [$result]: " . ($link ? pg_last_error($link) : "No connection"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
} else if (DB_TYPE == "mysql") {
|
|
|
|
$result = mysql_query($query, $link);
|
|
|
|
if (!$result) {
|
|
|
|
$query = htmlspecialchars($query);
|
|
|
|
if ($die_on_error) {
|
|
|
|
die("Query <i>$query</i> failed: " . ($link ? mysql_error($link) : "No connection"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
2005-09-07 14:17:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function db_fetch_assoc($result) {
|
2013-03-15 16:54:18 +01:00
|
|
|
if (DB_TYPE == "pgsql") {
|
|
|
|
return pg_fetch_assoc($result);
|
|
|
|
} else if (DB_TYPE == "mysql") {
|
|
|
|
return mysql_fetch_assoc($result);
|
|
|
|
}
|
2005-09-07 14:17:16 +02:00
|
|
|
}
|
|
|
|
|
2013-03-15 16:54:18 +01:00
|
|
|
|
2005-09-07 14:17:16 +02:00
|
|
|
function db_num_rows($result) {
|
2013-03-15 16:54:18 +01:00
|
|
|
if (DB_TYPE == "pgsql") {
|
|
|
|
return pg_num_rows($result);
|
|
|
|
} else if (DB_TYPE == "mysql") {
|
|
|
|
return mysql_num_rows($result);
|
|
|
|
}
|
2005-09-07 14:17:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function db_fetch_result($result, $row, $param) {
|
2013-03-15 16:54:18 +01:00
|
|
|
if (DB_TYPE == "pgsql") {
|
|
|
|
return pg_fetch_result($result, $row, $param);
|
|
|
|
} else if (DB_TYPE == "mysql") {
|
|
|
|
// I hate incoherent naming of PHP functions
|
|
|
|
return mysql_result($result, $row, $param);
|
|
|
|
}
|
2005-09-07 14:17:16 +02:00
|
|
|
}
|
|
|
|
|
2005-10-16 16:48:33 +02:00
|
|
|
function db_unescape_string($str) {
|
2013-03-15 16:54:18 +01:00
|
|
|
$tmp = str_replace("\\\"", "\"", $str);
|
|
|
|
$tmp = str_replace("\\'", "'", $tmp);
|
|
|
|
return $tmp;
|
2005-10-16 16:48:33 +02:00
|
|
|
}
|
|
|
|
|
2005-09-07 14:17:16 +02:00
|
|
|
function db_close($link) {
|
2013-03-15 16:54:18 +01:00
|
|
|
if (DB_TYPE == "pgsql") {
|
|
|
|
|
|
|
|
return pg_close($link);
|
|
|
|
|
|
|
|
} else if (DB_TYPE == "mysql") {
|
|
|
|
return mysql_close($link);
|
|
|
|
}
|
2005-09-07 14:17:16 +02:00
|
|
|
}
|
2005-10-17 05:45:44 +02:00
|
|
|
|
2006-05-16 14:37:35 +02:00
|
|
|
function db_affected_rows($link, $result) {
|
2013-03-15 16:54:18 +01:00
|
|
|
if (DB_TYPE == "pgsql") {
|
|
|
|
return pg_affected_rows($result);
|
|
|
|
} else if (DB_TYPE == "mysql") {
|
|
|
|
return mysql_affected_rows($link);
|
|
|
|
}
|
2006-05-16 14:56:53 +02:00
|
|
|
}
|
2006-08-16 09:28:10 +02:00
|
|
|
|
|
|
|
function db_last_error($link) {
|
2013-03-15 16:54:18 +01:00
|
|
|
if (DB_TYPE == "pgsql") {
|
|
|
|
return pg_last_error($link);
|
|
|
|
} else if (DB_TYPE == "mysql") {
|
|
|
|
return mysql_error($link);
|
|
|
|
}
|
2006-08-16 09:28:10 +02:00
|
|
|
}
|
|
|
|
|
2011-08-12 00:51:00 +02:00
|
|
|
function db_quote($str){
|
2013-03-15 16:54:18 +01:00
|
|
|
return("'$str'");
|
2011-08-12 00:51:00 +02:00
|
|
|
}
|
|
|
|
|
2013-03-15 16:54:18 +01:00
|
|
|
?>
|