PHP Classes
Icontem

Class: ezSQL


  Search   All class groups All class groups   Latest entries Latest entries   Top 10 charts Top 10 charts   Newsletter Newsletter   Blog Blog   Forums Forums   Help FAQ Help FAQ  
  Login   Register  
Recommend this page to a friend! ReTweet ReTweet Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Justin Vincent  >  ezSQL  >  Download  >  Support forum Support forum (19)  >  Blog Blog  >  RSS 1.0 feed RSS 2.0 feed Latest changes  
Name: ezSQL Support forum
Base name: mysqldb
Description: Makes using mySQL ridiculously easy (great docs)
Related top rated classes:
Version: -
Required PHP version: -
License: Artistic License
All time users: 15276 users
All time rank: 23
Week users: 36 users
Week rank: 106
 
  Author   Group folder image Groups   Detailed description  
  Rate classes User ratings   Dependents   Trackback   Applications   Files Files  

Author

Picture of Justin Vincent
Name: Justin Vincent <e-mail contact>
Published packages: 1 Browse this author's classes Browse this author's classes
Country: United Kingdom United Kingdom - PHP jobs in United Kingdom
Home page: ???
Age: ???
All time rank: 79
Week rank: 165

Groups

Group folder image Databases Database management, accessing and searching View top rated classes

Detailed description

ezSQL is a widget that makes it very fast and easy for you to use database(s) within your PHP scripts.

This widget is a php file that you include at the top of your script. Then, instead of using std php database functions listed in the php manual, you use a much smaller (and easier) set of ezSQL functions.

ezSQL can dramatically increase development time and in most cases will streamline your code and make things run faster as well as making it very easy to debug and optimise your database queries.

Please read through these examples to see how easy using databases can be using ezSQL.

-------------------------------------------------------
Example 1
-------------------------------------------------------

// Select multiple records from the database..
$results = $db->get_results("SELECT name, email FROM users");

foreach ( $results as $user )
{
// Access data using object syntax
echo $user->name;
echo $user->email;
}

----------------------------------------------------
Example 2
----------------------------------------------------

// Get one row from the database..
$user = $db->get_row("SELECT name,email FROM users WHERE id = 2");

echo $user->name;
echo $user->email;


----------------------------------------------------
Example 3
----------------------------------------------------

// Get one variable from the database..
$var = $db->get_var("SELECT count(*) FROM users");

echo $var;


----------------------------------------------------
Example 4
----------------------------------------------------

// Insert into the database
$db->query("INSERT INTO users (id, name, email) VALUES (NULL,'Justin','jv@foo.com')");


----------------------------------------------------
Example 5
----------------------------------------------------

// Update the database
$db->query("UPDATE users SET name = 'Justin' WHERE id = 2)");


----------------------------------------------------
Example 6 (for debugging)
----------------------------------------------------

// Display last query and all associated results
$db->debug();


----------------------------------------------------
Example 7 (for debugging)
----------------------------------------------------

// Display the structure and contents of query results (or any variable)
$results = $db->get_results("SELECT name, email FROM users");

$db->vardump($results);


----------------------------------------------------
Example 8
----------------------------------------------------

// Get 'one column' (based on index) from a query..
$names = $db->get_col("SELECT name,email FROM users",0)

foreach ( $names as $name )
{
echo $name;
}

// Get another column from the previous (cached) query results..
$emails = $db->get_col(null,1)

foreach ( $emails as $email )
{
echo $email;
}


----------------------------------------------------
Example 9
----------------------------------------------------

// Map out the full schema of any given database..

$db->select("my_database");

foreach ( $db->get_col("SHOW TABLES",0) as $table_name )
{

$db->debug();
$db->get_results("DESC $table_name");

}

$db->debug();

User ratings

Ratings
Utility
Consistency
Documentation
Examples
Tests
Videos
Overall
Rank
All time:
Good (95.7%)
Good (93.4%)
Good (91.1%)
Good (91.7%)
-
-
Sufficient (75.5%)
43
Month:
Not yet rated by the users

Packages that need this class

Class Dependency Why it is needed
3SS Data Description Form
Recommended
To retrieve data

Trackback links

Link Description
mysqli kütüphanesi Evet manual'de, extension listesinde felan görüyorduk ama nedir pek bilemiyorum...

Applications that use this class

No application links were specified for this class.
Add link image If you know an application of this package, send a message to the author to add a link here.

Files

File Role Description
Plain text file ez_demo.php Example Demo that maps out your db schema
Plain text file ez_sql.php Class Main File
HTML file ez_sql_help.htm Doc. This will really help you to understand this
Download all files: mysqldb.tar.gz mysqldb.zip
NOTICE: if you are using a download manager program like 'GetRight', please Login before trying to download this archive.

 
  Advertise on this site Advertise on this site   Site map Site map   Statistics Statistics   Site tips Site tips   Privacy policy Privacy policy   Contact Contact  

For more information send a message to :
info at phpclasses dot org.
Copyright (c) Icontem 1999-2009 PHP Classes - PHP Class Scripts
  PHP Book Reviews - Reviews of books and other products