Login   Register  
PHP Classes
elePHPant
Icontem

File: ex_sql.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Danny Tucker  >  EZ Framework  >  ex_sql.php  >  Download  
File: ex_sql.php
Role: Example script
Content type: text/plain
Description: Example
Class: EZ Framework
Framework providing several types of functionality
Author: By
Last change: spelling error on sql corrected
Date: 2006-03-07 19:18
Size: 2,134 bytes
 

Contents

Class file image Download
<?php
# Version 1.0
require_once('../include/config.inc.php');

// ONLY MYSQL DB IS SUPPORTED RIGHT NOW
// This is automatically created in the config file
// You only need to do this if your connecting to another database that
// was not the default one specified in the config file
// Yes you can connect to multiple databases at the same time without having to
// open and close databases when switching between them
// Just use the object name given to each database....use a different object name for each!
$sql = new sql(DB_HOST,DB_NAME,DB_USER,DB_PASSWORD);

// Do any query
$sql->go("SELECT * FROM users");

// Fetch one result
$sql->fetchArray();

// Fetch all results
$sql->fetchAll();

// Number of results returned from query
$sql->numRows();

// Number of rows effects if query effected rows
$sql->affectedRows();

// Gets the last insert ID
$sql->lastId();

// Clear a result
$slq->clearResult();

// Close database connection
$slq->close();

#-------------------------------------------------------------------------------
#                                    REFERENCES
#-------------------------------------------------------------------------------

// You can also use references with this class to call results from queries in any order
// unlike the above where your next query would override the previous and you couldn't call
// anymore results on the previous query

// The reference is set to "0" - zero, if not specified like in the above examples

// This is pretty much the same as above only with a second parameter with the query reference

// Do any query
$sql->go("SELECT * FROM users",'getusers');
$sql->go("INSERT users VALUES ('1','bla')",'user_insert');
// Fetch one result
$sql->fetchArray('getusers');

// Fetch all results
$sql->fetchAll('getusers');

// Number of results returned from query
$sql->numRows('getusers');

// Number of rows effects if query effected rows
$sql->affectedRows('user_insert');

// Gets the last insert ID
$sql->lastId('user_insert');

// Clear a result
$sql->clearResult('getusers');
$sql->clearResult('user_insert');

?>