Recommend this page to a friend! |
Download .zip |
Info | Documentation | View files (2) | Download .zip | Reputation | Support forum | Blog | Links |
Last Updated | Ratings | Unique User Downloads | Download Rankings | |||||
2014-08-25 (2 years ago) | Not enough user ratings | Total: 273 | All time: 7,200 This week: 871 |
Version | License | PHP version | Categories | |||
slim-json-db 1.0.0 | MIT/X Consortium ... | 5 | PHP 5, Databases, Files and Folders |
Description | Author | ||||||||
This class can create and manage a database in a JSON format file. |
|
SlimDB is a simple inplementation of JSON document database purely written in PHP.
<?php
require 'SlimDB.php';
$db = new SlimDB()-open("db.slim");
{"name":"db\r\n","tables":{},"data":{}}
<?php
require 'SlimDB.php';
$db = new SlimDB()-open("db.slim");
$db->newTable('{"name": "tblusers", "cols": ["name", "age", "gender"]}');
{"name":"db\r\n","tables":{"tblusers":["_id","name","age", "gender", "created_at","updated_at"]},"data":{"tblusers":[]}}
<?php
require 'SlimDB.php';
$db = new SlimDB()-open("db.slim");
$db->dropTable("tblusers");
{"name":"db\r\n","tables":{},"data":{}}
<?php
require 'SlimDB.php';
$db = new SlimDB()-open("db.slim");
$db->setTable("`tblusers");
?>
<?php
require 'SlimDB.php';
$db = new SlimDB()-open("db.slim");
$db
->setTable("`tblusers")
->insert('{"name": "Aminu Bakori", "age": "100", "gender": "Male"}');
{"name":"db\r\n","tables":{"tblusers":["_id","name","age", "gender", "created_at","updated_at"]},"data":{"tblusers":[{"_id": "53f934f03333340880001e9b","name": "Aminu Bakori","age": "100","gender": "Male","created_at":"2014-08-24 2:42:24","updated_at":"2014-08-24 3:22:48"}]}}
<?php
require 'SlimDB.php';
$db = new SlimDB()-open("db.slim");
$db
->setTable("`tblusers")
->insert('{"name": "Aminu Bakori", "age": "100"}');
array (size=1) 0 =>
object(stdClass)[2]
public '_id' => string '53f934f03333340880001e9b' (length=24)
public 'name' => string 'Aminu Bakori' (length=12)
public 'age' => string '100' (length=3)
public 'created_at' => string '2014-08-24 2:42:24' (length=18)
public 'updated_at' => string '2014-08-24 3:22:48' (length=18)
<?php
require 'SlimDB.php';
$db = new SlimDB()-open("db.slim");
$db
->setTable("`tblusers")
->update('{"where": {"_id": "53f934f03333340880001e9b"}, "set": {"age": "200"}}');
{"name":"db\r\n","tables":{"tblusers":["_id","name","age", "gender", "created_at","updated_at"]},"data":{"tblusers":[{"_id": "53f934f03333340880001e9b","name": "Aminu Bakori","age": "200","gender": "Male","created_at":"2014-08-24 2:42:24","updated_at":"2014-08-24 3:22:48"}]}}
<?php
require 'SlimDB.php';
$db = new SlimDB()-open("db.slim");
$db
->setTable("`tblusers")
->delete('{"name": "Aminu Bakori"}');
{"name":"db\r\n","tables":{"tblusers":["_id","name","age", "gender", "created_at","updated_at"]},"data":{"tblusers":[]}}
/ * Slim Database. * @author Aminu Ibrahim Bakori <aminuibakori@live.com> * @version 1.0.0 * @license The MIT License (MIT) * @copyright Copyright (c) <2014> <Aminu Ibrahim Bakori> * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
0% |
|
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.