blob: fd10c78d5d25bf689ad6f986a948c9e5083d1174 (
plain)
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
|
<?php
/**
* Malete implementation of IsisDb.
*/
class MaleteDb implements IsisDb {
var $fdt;
var $db;
var $format;
public function __construct($schema) {
// Save db schema.
$this->format = $schema;
// Setup $fdt used by malete.
foreach ($schema['fields'] as $field => $info) {
$this->fdt[$field] = $info['name'];
}
// Open a database connection.
$this->db = new Isis_Db($this->fdt, $schema['db']['name'], new Isis_Server());
if (!$this->db->srv->sock) {
return FALSE;
}
}
public function read($id) {
if (!is_numeric($id)) {
return FALSE;
}
if ($results !== FALSE) {
$results = $this->db->read($id);
return $this->tag($results);
}
else {
return FALSE;
}
}
public function rows() {
$id = 1;
while($this->db->read($id)) {
$id++;
}
return $id - 1;
}
public function default_schema() {
return SchemaDb::default_schema();
}
// Tag results of a db query.
function tag($results) {
foreach ($results->val as $key => $value) {
$field = $results->tag[$key];
$name = $this->format['fields'][$field]['name'];
// Handles field repetition.
if ($this->format['fields'][$field]['repeat']) {
$data[$name][] = $value;
}
else {
$data[$name] = $value;
}
}
return $data;
}
}
|