-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample.php
103 lines (70 loc) · 3.47 KB
/
example.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?php
// Require source files (not needed if you use composer)
require 'src/crunchDB.php';
require 'src/crunchTable.php';
require 'src/crunchResource.php';
// Alias class accessor to omit namespace (optional)
use cybrox\crunchdb\CrunchDB as CrunchDB;
// Creating new cdb instance
$cdb = new CrunchDB('./db/');
echo '<pre>';
//=============================================================================
//= CrunchDB Examples. e() is a comment, f() contains the respective function =
//=============================================================================
e( 'Requesting database version' );
f( $cdb->version() );
e( 'Check if a table called "cookies" exists ' );
f( $cdb->table('cookies')->exists() );
e( 'Creating a table called "cookies" ' );
f( $cdb->table('cookies')->create() );
e( 'Creating a table called "cakes" ' );
f( $cdb->table('cakes')->create() );
e( 'Rename table "cakes" to "cheese" ' );
f( $cdb->table('cakes')->alter('cheese') );
e( 'Requesting a list of tables in the database');
f( $cdb->tables() );
e( 'Count all rows in the cookies table ' );
f( $cdb->table('cookies')->count() );
e( 'Insert a chocolate cookie to the cookies table' );
f( $cdb->table('cookies')->insert(array("type" => "chocolate", "is" => "nice")) );
e( 'Insert a banana cookie to the cookies table' );
f( $cdb->table('cookies')->insert(array("type" => "banana", "is" => "nice")) );
e( 'Insert a strawberry cookie to the cookies table' );
f( $cdb->table('cookies')->insert(array("type" => "strawberry", "is" => "ok")) );
e( 'Get the raw dataset from the cookies table' );
f( $cdb->table('cookies')->raw() );
e( 'Select all the cookies from the cookie table' );
f( $cdb->table('cookies')->select('*')->fetch() );
e( 'Count all the cookies from the cookie table' );
f( $cdb->table('cookies')->select('*')->count() );
e( 'Select and fetch all cookies where type is chocolate' );
f( $cdb->table('cookies')->select(['type', '==', 'chocolate'])->fetch() );
e( 'Select and fetch all cookies where type is chocolate or banana' );
f( $cdb->table('cookies')->select(['type', '==', 'chocolate'],['type', '==', 'banana', 'or'])->fetch() );
e( 'Select and count all cookies where type is chocolate and banana' );
f( $cdb->table('cookies')->select(['type', '==', 'chocolate'],['type', '==', 'banana', 'and'])->count() );
e( 'Sort the selected cookies (all) alphabetically and fetch the result' );
f( $cdb->table('cookies')->select('*')->sort(['type'])->fetch() );
e( 'Delete the cookie with the type strawberry' );
f( $cdb->table('cookies')->select(['type', '==', 'strawberry'])->delete() );
e( 'Rename the banana cookie to chocolate as well' );
f( $cdb->table('cookies')->select(['type', '==', 'banana'])->update(['type', 'chocolate']) );
e( 'Fetch all cookies from the cookies table' );
f( $cdb->table('cookies')->select('*')->fetch() );
e( 'Dropping all tables to end this test ' );
$cdb->table('cookies')->drop();
$cdb->table('cheese')->drop();
//=============================================================================
//=============================================================================
//=============================================================================
echo '</pre>';
// Functions to display stuff
function e($in){ echo $in; }
function f($in){
echo '
';
var_dump($in);
echo '
';
}
?>