Wednesday, November 13, 2013

Download sSql Mysql Database Abstraction

sSql Mysql Database Abstraction

sSql Mysql Database Abstraction dowload

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

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!

sSql Mysql Database Abstraction dowload

No comments:

Post a Comment