sSql Mysql Database Abstraction free download - Php Scripts

Latest

FREE PHP SCRIPTS

Tuesday, April 11, 2017

sSql Mysql Database Abstraction free download

 sSql Mysql Database Abstraction  free download

sSql Mysql Database Abstraction free download

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!

No comments:

Post a Comment