32 lines
745 B
PHP
32 lines
745 B
PHP
<?php
|
|
require __DIR__.'/../vendor/autoload.php';
|
|
|
|
use nulib\cl;
|
|
use nulib\db\CapacitorChannel;
|
|
use nulib\db\sqlite\SqliteCapacitor;
|
|
|
|
class MyChannel extends CapacitorChannel {
|
|
const TABLE_NAME = "my";
|
|
const COLUMN_DEFINITIONS = [
|
|
"name" => "varchar not null",
|
|
"age" => "integer",
|
|
"num" => "integer",
|
|
];
|
|
|
|
function getItemValues($item): ?array {
|
|
$item = cl::with($item);
|
|
return [
|
|
"name" => cl::first($item),
|
|
"age" => $item["age"] ?? null,
|
|
"num" => rand(),
|
|
];
|
|
}
|
|
}
|
|
|
|
$capacitor = new SqliteCapacitor(__DIR__.'/test-sqlite.db');
|
|
$channel = $capacitor->newChannel(new MyChannel());
|
|
|
|
$channel->charge("hello world");
|
|
$channel->charge(["bonjour monde"]);
|
|
$channel->charge(["gutten tag", "age" => 15]);
|