Sunteți pe pagina 1din 16

<?

php
//##############################################################################
###########################
// # File Name: db_mysql.php
// # File Version: v 1.0
// # Created By: Krunal Punmiya
// # Created On: 17 March 2010
// # Last Modified By:
// # Last modified On:
//##############################################################################
###########################
class DB_Sql {

var $Host = "";


var $Database = "";
var $User = "";
var $Password = "";
/* public: configuration parameters */
var $Auto_Free = 0; ## Set to 1 for automatic mysql_free_result()
var $Debug = 0; ## Set to 1 for debugging messages.
var $Halt_On_Error = "yes"; ## "yes" (halt with message), "no" (ignore errors
quietly), "report" (ignore errror, but spit a warning)
var $Seq_Table = "db_sequence";
/* public: result array and current row number */
var $Record = array();
var $Row;
/* public: current error number and error text */
var $Errno = 0;
var $Error = "";
/* public: this is an api revision, not a CVS revision. */
var $type = "mysql";
var $revision = "1.2";
/* private: link and query handles */
var $Link_ID = 0;
var $Query_ID = 0;
public $last_inserted_id = 0;
//public $Database = "";
//==============================================================================
======================
// Function Name : DB_Sql
// # Created By: Tanvi.M.Patel
// # Created On: 17 March 2010
// Last Modified By:
// Last modified On:
// Purpose : Constructor to initialise the variables
// Parameters:
// returns
//------------------------------------------------------------------------------
----------------------
/* public: constructor */
function DB_Sql($query = "") {
global $Host;
global $Database;
global $User;
global $Password;
$this->Host = $Host;
$this->Database = $Database;
$this->User = $User;
$this->Password = $Password;

$this->query($query);
}
//==============================================================================
======================
// Function Name : link_id
// # Created By: Tanvi.M.Patel
// # Created On: 17 March 2010
// Last Modified By:
// Last modified On:
// Purpose : get link_id
// Parameters:
// returns The link_id
//------------------------------------------------------------------------------
----------------------
/* public: some trivial reporting */
function link_id() {
return $this->Link_ID;
}
//==============================================================================
======================
// Function Name : query_id
// # Created By: Tanvi.M.Patel
// # Created On: 17 March 2010
// Last Modified By:
// Last modified On:
// Purpose : get query_id
// Parameters:
// returns The query_id
//------------------------------------------------------------------------------
----------------------
function query_id() {
return $this->Query_ID;
}
//==============================================================================
======================
// Function Name : connect
// # Created By: Tanvi.M.Patel
// # Created On: 17 March 2010
// Last Modified By:
// Last modified On:
// Purpose : public: connection management
// Parameters: Database name,Host name,User name,Password name
// returns The Link_ID
//------------------------------------------------------------------------------
----------------------
function connect($Database = "", $Host = "", $User = "", $Password = "") {
/* Handle defaults */
if ("" == $Database)
$Database = $this->Database;
if ("" == $Host)
$Host = $this->Host;
if ("" == $User)
$User = $this->User;
if ("" == $Password)
$Password = $this->Password;
/* establish connection, select database */
if ( 0 == $this->Link_ID ) {
$this->Link_ID=mysql_pconnect($Host, $User, $Password);
if (!$this->Link_ID) {
$this->halt("pconnect($Host, $User, \$Password) failed.");
return 0;
}
if (!@mysql_select_db($Database,$this->Link_ID)) {
$this->halt("cannot use database ".$this->Database);
return 0;
}
}
return $this->Link_ID;
}
//==============================================================================
======================
// Function Name : free
// # Created By: Tanvi.M.Patel
// # Created On: 17 March 2010
// Last Modified By:
// Last modified On:
// Purpose : public: discard the query result
// Parameters:
// returns
//------------------------------------------------------------------------------
----------------------
function free() {
@mysql_free_result($this->Query_ID);
$this->Query_ID = 0;
$this->last_inserted_id = 0;
}
//==============================================================================
======================
// Function Name : query
// # Created By: Tanvi.M.Patel
// # Created On: 17 March 2010
// Last Modified By:
// Last modified On:
// Purpose : Send a MySQL query
// Parameters: Query_String
// returns resource id on success, or FALSE on error.
//------------------------------------------------------------------------------
----------------------
/* public: perform a query */
function query($Query_String) {
/* No empty queries, please, since PHP4 chokes on them. */
if ($Query_String == "")
return 0;
if (!$this->connect()) {
return 0; /* we already complained in connect() about that. */
};
# New query, discard previous result.
if ($this->Query_ID) {
$this->free();
}
if ($this->Debug)
printf("Debug: query = %s<br>\n", $Query_String);
$this->Query_ID = @mysql_query($Query_String,$this->Link_ID);
$this->Row = 0;
$this->Errno = mysql_errno();
$this->Error = mysql_error();
if (!$this->Query_ID) {
$this->halt("Invalid SQL: ".$Query_String);
}
$this->last_inserted_id = mysql_insert_id();
# Will return nada if it fails. That's fine.
return $this->Query_ID;
}
//============================================================================
========================
// Function Name : parse_mysql_dump
// # Created By: Nirav Patel
// # Created On: 20 May 2010
// Last Modified By:
// Last modified On:
// Purpose :
// Parameters:Source and target
//----------------------------------------------------------------------
------------------------------
function parse_mysql_dump($url)
{
$sqlfile = $url;
if(!file_exists($sqlfile))
{
return false;
}
else
{
$contents = file_get_contents($sqlfile);
// Remove comments
$comment_patterns = array('/\/\*.*(\n)*.*(\*\/)?/', //C
comments
'/\s*--.*\n/', //comments start with --
'/\s*#.*\n/', //comments start with #
);
$contents = preg_replace($comment_patterns, "\n", $conte
nts);
//Retrieve sql statements
$statements = explode(";", $contents);
$statements = preg_replace("/\s/", ' ', $statements);
if (!$this->connect())
{
return 0;
}
else
{
try
{
foreach ($statements as $query) {
if (trim($query) != '') {
$result = mysql_query($q
uery);
if (!$result) {
echo 'Un
able to run query ' . $query . ': ' . mysql_error();
}
}
}
}
catch(Exception $e)
{
return false;
}
return true;
}
}
/*if (!$this->connect())
{
return 0;
}
else
{
try
{
$file_content = file($url);
foreach($file_content as $sql_line)
{
if(trim($sql_line) != "" && strpos($sql_
line, "--") === false)
{
mysql_query($sql_line);
}
}
return true;
}
catch(Exception $e)
{
return false;
}
}*/
}
//==============================================================================
======================
// Function Name : next_record
// # Created By: Tanvi.M.Patel
// # Created On: 17 March 2010
// Last Modified By:
// Last modified On:
// Purpose : Fetch a result row as an associative array, a numeric arra
y, or both
// Parameters:
// returns a result row as an associative array, a numeric array, o
r both
//------------------------------------------------------------------------------
----------------------
/* public: walk result set */
function next_record() {
if (!$this->Query_ID) {
$this->halt("next_record called with no query pending.");
return 0;
}
$this->Record = @mysql_fetch_array($this->Query_ID);
$this->Row += 1;
$this->Errno = mysql_errno();
$this->Error = mysql_error();
$stat = is_array($this->Record);
if (!$stat && $this->Auto_Free) {
$this->free();
}
return $stat;
}
//==============================================================================
======================
// Function Name : seek
// # Created By: Tanvi.M.Patel
// # Created On: 17 March 2010
// Last Modified By:
// Last modified On:
// Purpose : Move internal result pointer
// Parameters: position
// returns TRUE on success or FALSE on failure.
//------------------------------------------------------------------------------
----------------------
/* public: position in result set */
function seek($pos = 0) {
$status = @mysql_data_seek($this->Query_ID, $pos);
if ($status)
$this->Row = $pos;
else {
$this->halt("seek($pos) failed: result has ".$this->num_rows()." rows");
/* half assed attempt to save the day,
* but do not consider this documented or even
* desireable behaviour.
*/
@mysql_data_seek($this->Query_ID, $this->num_rows());
$this->Row = $this->num_rows;
return 0;
}
return 1;
}
//==============================================================================
======================
// Function Name : lock
// # Created By: Tanvi.M.Patel
// # Created On: 17 March 2010
// Last Modified By:
// Last modified On:
// Purpose : lock the tables
// Parameters: table , mode
// returns resource id on success, or FALSE on error.
//------------------------------------------------------------------------------
----------------------
/* public: table locking */
function lock($table, $mode="write") {
$this->connect();
$query="lock tables ";
if (is_array($table)) {
while (list($key,$value)=each($table)) {
if ($key=="read" && $key!=0) {
$query.="$value read, ";
} else {
$query.="$value $mode, ";
}
}
$query=substr($query,0,-2);
} else {
$query.="$table $mode";
}
$res = @mysql_query($query, $this->Link_ID);
if (!$res) {
$this->halt("lock($table, $mode) failed.");
return 0;
}
return $res;
}
//==============================================================================
======================
// Function Name : unlock
// # Created By: Tanvi.M.Patel
// # Created On: 17 March 2010
// Last Modified By:
// Last modified On:
// Purpose : unlock the tables
// Parameters:
// returns resource id on success, or FALSE on error.
//------------------------------------------------------------------------------
----------------------
function unlock() {
$this->connect();
$res = @mysql_query("unlock tables", $this->Link_ID);
if (!$res) {
$this->halt("unlock() failed.");
return 0;
}
return $res;
}
//==============================================================================
======================
// Function Name : affected_rows
// # Created By: Tanvi.M.Patel
// # Created On: 17 March 2010
// Last Modified By:
// Last modified On:
// Purpose : Get number of affected rows in previous MySQL operation
// Parameters:
// returns the number of affected rows on success, and -1 if the la
st query failed.
//------------------------------------------------------------------------------
----------------------
/* public: evaluate the result (size, width) */
function affected_rows() {
return @mysql_affected_rows($this->Link_ID);
}
//==============================================================================
======================
// Function Name : num_rows
// # Created By: Tanvi.M.Patel
// # Created On: 17 March 2010
// Last Modified By:
// Last modified On:
// Purpose : Get number of rows in result
// Parameters:
// returns The number of rows in a result set on success, or FALSE
on failure.
//------------------------------------------------------------------------------
----------------------
function num_rows() {
return @mysql_num_rows($this->Query_ID);
}
//==============================================================================
======================
// Function Name : num_fields
// # Created By: Tanvi.M.Patel
// # Created On: 17 March 2010
// Last Modified By:
// Last modified On:
// Purpose : Get number of fields in result
// Parameters:
// returns Returns the number of fields in the result set resource
on success, or FALSE on failure
//------------------------------------------------------------------------------
----------------------
function num_fields() {
return @mysql_num_fields($this->Query_ID);
}
//==============================================================================
======================
// Function Name : nf
// # Created By: Tanvi.M.Patel
// # Created On: 17 March 2010
// Last Modified By:
// Last modified On:
// Purpose : calls the num_rows fn
// Parameters:
// returns The number of rows in a result set on success, or FALSE
on failure.
//------------------------------------------------------------------------------
----------------------
/* public: shorthand notation */
function nf() {
return $this->num_rows();
}
//==============================================================================
======================
// Function Name : np
// # Created By: Tanvi.M.Patel
// # Created On: 17 March 2010
// Last Modified By:
// Last modified On:
// Purpose : calls the num_rows fn
// Parameters:
// returns The number of rows in a result set on success, or FALSE
on failure.
//------------------------------------------------------------------------------
----------------------
function np() {
print $this->num_rows();
}
//==============================================================================
======================
// Function Name : f
// # Created By: Tanvi.M.Patel
// # Created On: 17 March 2010
// Last Modified By:
// Last modified On:
// Purpose : gets the record name
// Parameters:
// returns the record name
//------------------------------------------------------------------------------
----------------------
function f($Name) {
return $this->Record[$Name];
}
//==============================================================================
======================
// Function Name : fnFetchArray
// # Created By: Tanvi.M.Patel
// # Created On: 17 March 2010
// Last Modified By:
// Last modified On:
// Purpose : Fetch a result row as an associative array, a numeric arra
y, or both
// Parameters:
// returns a result row as an associative array, a numeric array, o
r both
//------------------------------------------------------------------------------
----------------------
function fnFetchArray($sqlResult) {
return @mysql_fetch_array($sqlResult);
}
//==============================================================================
======================
// Function Name : fnFetchAllRecords
// # Created By: Tanvi.M.Patel
// # Created On: 17 March 2010
// Last Modified By:
// Last modified On:
// Purpose : Fetch a result row as an associative array
// Parameters:
// returns Returns an associative array of strings that corresponds
to the fetched row, or FALSE if there are no more rows.
//------------------------------------------------------------------------------
----------------------
function fnFetchAllRecords($sqlResult) {
$table_result=array();
$r=0;
while($row = mysql_fetch_assoc($sqlResult)){
$arr_row=array();
$c=0;
while ($c < mysql_num_fields($sqlResult)) {
$col = mysql_fetch_field($sqlResult, $c);
$arr_row[$col -> name] = $row[$col -> name];
$c++;
}
$table_result[$r] = $arr_row;
$r++;
}
return $table_result;
}
//==============================================================================
======================
// Function Name : fnFetchSimpleArray
// # Created By: Nirav Patel
// # Created On: 29 May 2010
// Last Modified By:
// Last modified On:
// Purpose : Fetch a result row as an associative array
// Parameters:
// returns
//------------------------------------------------------------------------------
----------------------
function fnFetchSimpleArray($sqlResult) {
$table_result=array();
$r=0;
while($row = mysql_fetch_array($sqlResult)){
$table_result[] = $row[0];
}
return $table_result;
}

//==============================================================================
======================
// Function Name : p
// # Created By: Tanvi.M.Patel
// # Created On: 17 March 2010
// Last Modified By:
// Last modified On:
// Purpose : gets the record name
// Parameters:
// returns the record name
//------------------------------------------------------------------------------
----------------------
function p($Name) {
print $this->Record[$Name];
}
//==============================================================================
======================
// Function Name : nextid
// # Created By: Tanvi.M.Patel
// # Created On: 17 March 2010
// Last Modified By:
// Last modified On:
// Purpose : public: sequence numbers
// Parameters: seq_name
// returns The nextid
//------------------------------------------------------------------------------
----------------------
function nextid($seq_name) {
$this->connect();
if ($this->lock($this->Seq_Table)) {
/* get sequence number (locked) and increment */
$q = sprintf("select nextid from %s where seq_name = '%s'",
$this->Seq_Table,
$seq_name);
$id = @mysql_query($q, $this->Link_ID);
$res = @mysql_fetch_array($id);
/* No current value, make one */
if (!is_array($res)) {
$currentid = 0;
$q = sprintf("insert into %s values('%s', %s)",
$this->Seq_Table,
$seq_name,
$currentid);
$id = @mysql_query($q, $this->Link_ID);
} else {
$currentid = $res["nextid"];
}
$nextid = $currentid + 1;
$q = sprintf("update %s set nextid = '%s' where seq_name = '%s'",
$this->Seq_Table,
$nextid,
$seq_name);
$id = @mysql_query($q, $this->Link_ID);
$this->unlock();
} else {
$this->halt("cannot lock ".$this->Seq_Table." - has it been created?");
return 0;
}
return $nextid;
}
//==============================================================================
======================
// Function Name : close
// # Created By: Tanvi.M.Patel
// # Created On: 17 March 2010
// Last Modified By:
// Last modified On:
// Purpose : Close MySQL connection
// Parameters:
// returns TRUE on success or FALSE on failure
//------------------------------------------------------------------------------
----------------------
function close() {
if(!mysql_close()) {//open failed
$this->halt("Connection close failed.");
}
}
//==============================================================================
======================
// Function Name : metadata
// # Created By: Tanvi.M.Patel
// # Created On: 17 March 2010
// Last Modified By:
// Last modified On:
// Purpose : get metadata
// Parameters: table
// returns table metadata
//------------------------------------------------------------------------------
----------------------
function metadata($table='',$full=false) {
$count = 0;
$id = 0;
$res = array();
/*
* Due to compatibility problems with Table we changed the behavior
* of metadata();
* depending on $full, metadata returns the following values:
*
* - full is false (default):
* $result[]:
* [0]["table"] table name
* [0]["name"] field name
* [0]["type"] field type
* [0]["len"] field length
* [0]["flags"] field flags
*
* - full is true
* $result[]:
* ["num_fields"] number of metadata records
* [0]["table"] table name
* [0]["name"] field name
* [0]["type"] field type
* [0]["len"] field length
* [0]["flags"] field flags
* ["meta"][field name] index of field named "field name"
* The last one is used, if you have a field name, but no index.
* Test: if (isset($result['meta']['myfield'])) { ...
*/
// if no $table specified, assume that we are working with a query
// result
if ($table) {
$this->connect();
$id = @mysql_list_fields($this->Database, $table);
if (!$id)
$this->halt("Metadata query failed.");
} else {
$id = $this->Query_ID;
if (!$id)
$this->halt("No query specified.");
}
$count = @mysql_num_fields($id);
// made this IF due to performance (one if is faster than $count if's)
if (!$full) {
for ($i=0; $i<$count; $i++) {
$res[$i]["table"] = @mysql_field_table ($id, $i);
$res[$i]["name"] = @mysql_field_name ($id, $i);
$res[$i]["type"] = @mysql_field_type ($id, $i);
$res[$i]["len"] = @mysql_field_len ($id, $i);
$res[$i]["flags"] = @mysql_field_flags ($id, $i);
}
} else { // full
$res["num_fields"]= $count;

for ($i=0; $i<$count; $i++) {


$res[$i]["table"] = @mysql_field_table ($id, $i);
$res[$i]["name"] = @mysql_field_name ($id, $i);
$res[$i]["type"] = @mysql_field_type ($id, $i);
$res[$i]["len"] = @mysql_field_len ($id, $i);
$res[$i]["flags"] = @mysql_field_flags ($id, $i);
$res["meta"][$res[$i]["name"]] = $i;
}
}
// free the result only if we were called on a table
if ($table) @mysql_free_result($id);
return $res;
}
//==============================================================================
======================
// Function Name : halt
// # Created By: Tanvi.M.Patel
// # Created On: 17 March 2010
// Last Modified By:
// Last modified On:
// Purpose : halt the session when error from previous MySQL operation
had
// Parameters:
// returns halt the current page
//------------------------------------------------------------------------------
----------------------
/* private: error handling */
function halt($msg) {
$this->Error = @mysql_error($this->Link_ID);
$this->Errno = @mysql_errno($this->Link_ID);
if ($this->Halt_On_Error == "no")
return;
$this->haltmsg($msg);
if ($this->Halt_On_Error != "report")
die("Session halted.");
}
//==============================================================================
======================
// Function Name : haltmsg
// # Created By: Tanvi.M.Patel
// # Created On: 17 March 2010
// Last Modified By:
// Last modified On:
// Purpose : haltmsg for halt the session when error from previous MySQ
L operation had
// Parameters:
// returns The haltmsg
//------------------------------------------------------------------------------
----------------------
function haltmsg($msg) {
printf("</td></tr></table><b>Database error:</b> %s<br>\n", $msg);
printf("<b>MySQL Error</b>: %s (%s)<br>\n",
$this->Errno,
$this->Error);
}
//==============================================================================
======================
// Function Name : table_names
// # Created By: Tanvi.M.Patel
// # Created On: 17 March 2010
// Last Modified By:
// Last modified On:
// Purpose : lists the non- TEMPORARY tables in a given database.
// Parameters:
// returns The table_name,..datas
//------------------------------------------------------------------------------
----------------------
function table_names() {
$this->query("SHOW TABLES");
$i=0;
while ($info=mysql_fetch_row($this->Query_ID))
{
$return[$i]["table_name"]= $info[0];
$return[$i]["tablespace_name"]=$this->Database;
$return[$i]["database"]=$this->Database;
$i++;
}
return $return;
}
}
//==============================================================================
======================
// Function Name : pname
// # Created By: Tanvi.M.Patel
// # Created On: 17 March 2010
// Last Modified By:
// Last modified On:
// Purpose : get pname
// Parameters:
// returns The pname
//------------------------------------------------------------------------------
----------------------
function pname()
{
$pname = '&copy;Built by- Nitin Kumar Singh';
return $pname;
}
?>

===============================================================================

S-ar putea să vă placă și