2007-10-26 21:14:35 +00:00
|
|
|
<?php
|
|
|
|
|
2007-10-30 17:54:29 +00:00
|
|
|
/* Should not be enabled for public code */
|
|
|
|
//ini_set('display_errors', 'stdout');
|
|
|
|
//error_reporting(E_ALL);
|
2007-10-26 21:14:35 +00:00
|
|
|
|
|
|
|
// represents a connection to a database.
|
|
|
|
// Intended to be subclassed (e.g., BoincDb, BossaDb)
|
|
|
|
|
|
|
|
class DbConn {
|
2007-10-29 04:02:41 +00:00
|
|
|
var $db_conn;
|
|
|
|
var $db_name;
|
2007-10-26 21:14:35 +00:00
|
|
|
|
2007-10-29 16:38:25 +00:00
|
|
|
function init_conn($user, $passwd, $host, $name) {
|
|
|
|
$this->db_conn = mysql_pconnect($host, $user, $passwd);
|
2007-10-26 21:14:35 +00:00
|
|
|
if (!$this->db_conn) {
|
|
|
|
return false;
|
|
|
|
}
|
2007-10-29 16:38:25 +00:00
|
|
|
$this->db_name = $name;
|
2007-10-26 21:14:35 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function do_query($query) {
|
|
|
|
$q = str_replace('DBNAME', $this->db_name, $query);
|
2007-11-29 23:26:49 +00:00
|
|
|
//echo "query: $q<br>\n";
|
2007-10-28 15:03:14 +00:00
|
|
|
$ret = mysql_query($q, $this->db_conn);
|
|
|
|
if (!$ret) {
|
2007-11-29 23:26:49 +00:00
|
|
|
echo "Database Error<br>\n";
|
2007-11-12 16:00:37 +00:00
|
|
|
//echo ": ", mysql_error(), "\n<pre>";
|
2007-11-05 23:55:33 +00:00
|
|
|
//var_dump(debug_backtrace());
|
2007-11-12 16:00:37 +00:00
|
|
|
//echo "</pre>query: $q\n";
|
|
|
|
return null;
|
2007-10-28 15:03:14 +00:00
|
|
|
}
|
|
|
|
return $ret;
|
2007-10-26 21:14:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function lookup($table, $classname, $clause) {
|
|
|
|
$query = "select * from DBNAME.$table where $clause";
|
|
|
|
$result = $this->do_query($query);
|
|
|
|
if (!$result) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
$obj = mysql_fetch_object($result, $classname);
|
|
|
|
mysql_free_result($result);
|
|
|
|
return $obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
function lookup_id($id, $table, $classname) {
|
|
|
|
return $this->lookup($table, $classname, "id=$id");
|
|
|
|
}
|
|
|
|
|
2007-11-10 00:32:42 +00:00
|
|
|
function enum_general($classname, $query) {
|
|
|
|
$result = $this->do_query($query);
|
|
|
|
if (!$result) return null;
|
|
|
|
while ($obj = mysql_fetch_object($result, $classname)) {
|
|
|
|
$x[] = $obj;
|
|
|
|
}
|
|
|
|
mysql_free_result($result);
|
|
|
|
return $x;
|
|
|
|
}
|
|
|
|
|
2007-11-05 23:55:33 +00:00
|
|
|
function enum_fields(
|
|
|
|
$table, $classname, $fields, $where_clause, $order_clause
|
|
|
|
) {
|
2007-10-26 21:14:35 +00:00
|
|
|
$x = array();
|
2007-11-05 23:55:33 +00:00
|
|
|
if ($where_clause) {
|
|
|
|
$where_clause = "where $where_clause";
|
2007-10-26 21:14:35 +00:00
|
|
|
}
|
2007-11-05 23:55:33 +00:00
|
|
|
$query = "select $fields from DBNAME.$table $where_clause $order_clause";
|
2007-10-26 21:14:35 +00:00
|
|
|
$result = $this->do_query($query);
|
|
|
|
if (!$result) return null;
|
|
|
|
while ($obj = mysql_fetch_object($result, $classname)) {
|
|
|
|
$x[] = $obj;
|
|
|
|
}
|
|
|
|
mysql_free_result($result);
|
|
|
|
return $x;
|
|
|
|
}
|
2007-11-05 23:55:33 +00:00
|
|
|
function enum($table, $classname, $where_clause=null, $order_clause=null) {
|
|
|
|
return self::enum_fields(
|
|
|
|
$table, $classname, '*', $where_clause, $order_clause
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2007-10-26 21:14:35 +00:00
|
|
|
function update($obj, $table, $clause) {
|
|
|
|
$query = "update DBNAME.$table set $clause where id=$obj->id";
|
|
|
|
return $this->do_query($query);
|
|
|
|
}
|
2007-10-29 04:02:41 +00:00
|
|
|
function update_aux($table, $clause) {
|
2007-10-28 15:03:14 +00:00
|
|
|
$query = "update DBNAME.$table set $clause";
|
|
|
|
return $this->do_query($query);
|
|
|
|
}
|
|
|
|
function insert($table, $clause) {
|
|
|
|
$query = "insert into DBNAME.$table $clause";
|
|
|
|
return $this->do_query($query);
|
|
|
|
}
|
2007-10-27 20:38:12 +00:00
|
|
|
function delete($obj, $table) {
|
|
|
|
$query = "delete from DBNAME.$table where id=$obj->id";
|
|
|
|
return $this->do_query($query);
|
|
|
|
}
|
2007-11-07 17:23:29 +00:00
|
|
|
function delete_aux($table, $clause) {
|
|
|
|
$query = "delete from DBNAME.$table where $clause";
|
|
|
|
return $this->do_query($query);
|
|
|
|
}
|
2007-10-26 21:14:35 +00:00
|
|
|
function insert_id() {
|
|
|
|
return mysql_insert_id($this->db_conn);
|
|
|
|
}
|
|
|
|
function count($table, $clause) {
|
|
|
|
$query = "select count(*) as total from DBNAME.$table where $clause";
|
|
|
|
$result = $this->do_query($query);
|
|
|
|
$cnt = mysql_fetch_object($result);
|
|
|
|
if ($cnt) return $cnt->total;
|
|
|
|
return null;
|
|
|
|
mysql_free_result($result);
|
|
|
|
}
|
2007-11-10 00:32:42 +00:00
|
|
|
function replace($table, $clause) {
|
2007-11-12 16:00:37 +00:00
|
|
|
$query = "replace into DBNAME.$table set $clause";
|
2007-11-10 00:32:42 +00:00
|
|
|
return $this->do_query($query);
|
|
|
|
}
|
2007-10-27 20:38:12 +00:00
|
|
|
function base_escape_string($string) {
|
|
|
|
return mysql_real_escape_string($string, $this->db_conn);
|
|
|
|
}
|
2007-11-12 22:28:17 +00:00
|
|
|
function base_error() {
|
|
|
|
return mysql_error($this->db_conn);
|
|
|
|
}
|
2007-10-26 21:14:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|