Mega Class Database (sqlite) v 1.0 Use every feature of sqlite in PHP . Main Features: 1. sqlite Compatible with:sqlite 2.8.2+. 2. Easy to Use, clean, easy to understand code. 3. Access sqlite Database without any knowledge of sqlite. 4. Uses Associative array of data to insert and update rows in the database table. 5. Optional escape string feature to avoid sqlite Injections. 6. Automatically Creates Prepared Statements. 7. Select Rows, Colum...
This small class will save you time by providing CRUD methods for quickly building SQL query statements. This can be used and integrated into any existing project with ease. Also, it is great at handling exceptions when SQL errors are produced. System Requirements PHP 5 PDO Extension Supported PDO Driver(s) – PDO_SQLITE, PDO_MYSQL, PDO_PGSQL Usage require('class.db.php'); // Create $bind = array( ":id" => $_POST['user_id'], ":user" =&...