-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathcollection.php
51 lines (40 loc) · 1.23 KB
/
collection.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
<?php
namespace ArangoDBClient;
require __DIR__ . '/init.php';
try {
$connection = new Connection($connectionOptions);
$handler = new CollectionHandler($connection);
// create a new collection
$col = new Collection();
$col->setName('hihi');
$result = $handler->create($col);
var_dump($result);
// check if a collection exists
$result = $handler->has('foobar');
var_dump($result);
// get an existing collection
$result = $handler->get('hihi');
var_dump($result);
// get an existing collection
$result = $handler->get('hihi');
var_dump($result);
// get number of documents from an existing collection
$result = $handler->count('hihi');
var_dump($result);
// get figures for an existing collection
$result = $handler->figures('hihi');
var_dump($result);
// delete the collection
$result = $handler->drop('hihi');
var_dump($result);
// rename a collection
// $handler->rename($col, "hihi30");
// truncate an existing collection
// $result = $handler->truncate("hihi");
} catch (ConnectException $e) {
print $e . PHP_EOL;
} catch (ServerException $e) {
print $e . PHP_EOL;
} catch (ClientException $e) {
print $e . PHP_EOL;
}