Searched refs:createAggregate (Results 1 – 7 of 7) sorted by relevance
/PHP-8.3/ext/sqlite3/tests/ |
H A D | sqlite3_33_createAggregate_notcallable.phpt | 2 SQLite3::createAggregate() Test whether a supplied PHP function is valid when using in an aggregate… 17 $db->createAggregate('TESTAGGREGATE', 'aggregate_test_step', 'aggregate_final'); 23 $db->createAggregate('TESTAGGREGATE2', 'aggregate_step', 'aggregate_test_final'); 28 var_dump($db->createAggregate ('TESTAGGREGATE3', 'aggregate_step', 'aggregate_final')); 35 SQLite3::createAggregate(): Argument #2 ($stepCallback) must be a valid callback, function "aggrega… 36 SQLite3::createAggregate(): Argument #3 ($finalCallback) must be a valid callback, function "aggreg…
|
H A D | gh11878.phpt | 12 …$this->sqlite->createAggregate("indexes", array($this, "SQLiteIndex"), array($this, "SQLiteFinal")… 13 $this->sqlite->createAggregate("indexes_closure", fn () => 0, fn () => 0, 0);
|
H A D | sqlite3_25_create_aggregate.phpt | 2 SQLite3::createAggregate() test 34 $db->createAggregate('S', 'sum_list_step', 'sum_list_finalize', 1);
|
H A D | sqlite3_trampoline_create_aggregate.phpt | 2 SQLite3::createAggregate() trampoline callback 39 $db->createAggregate('S', $step, $finalize, 1);
|
/PHP-8.3/ext/sqlite3/ |
H A D | sqlite3.stub.php | 374 …public function createAggregate(string $name, callable $stepCallback, callable $finalCallback, int… function in SQLite3
|
H A D | sqlite3_arginfo.h | 189 ZEND_METHOD(SQLite3, createAggregate); 242 ZEND_ME(SQLite3, createAggregate, arginfo_class_SQLite3_createAggregate, ZEND_ACC_PUBLIC)
|
H A D | sqlite3.c | 981 PHP_METHOD(SQLite3, createAggregate) in PHP_METHOD() argument
|
Completed in 21 milliseconds