sSql Mysql Database Abstraction

Last Update
9 March 2012
Regular License
$8
Extended License
$40
Sales
16

Description sSql is an easy to use database abstraction class for mysql and php with some basic features. Its purpose is to make the database related work much easier. sSql features query stack, wich is used to delay the execution of queries and execute multiple queries. Also it includes query timing and query printing into a readable html table format for debugging purposes.

You can read the documentation for more information and for the function reference.

Usage example:

<?php include ('sSql.php'); $db = new sSql('localhost', 'username', 'password', 'database'); print $db->error; //prints out the error, if everything is fine if ($db->error=="") { $num = 0; $users = $db->select("SELECT * FROM users", $num); foreach ($users as $user) print $users->username; //the username row } ?>

For more examples click on Live preview button! If you have any questions, just leave a comment or drop me an email!