update page now
PHP 8.1.34 Released!

Collection::__construct

(No version information available, might only be in Git)

Collection::__constructDer Konstruktor der Klasse Collection

Beschreibung

private mysql_xdevapi\Collection::__construct()

Erstellt ein Collection-Objekt.

Parameter-Liste

Diese Funktion besitzt keine Parameter.

Beispiele

Beispiel #1 mysql_xdevapi\Collection::getOne()-Beispiel

<?php
$session
= mysql_xdevapi\getSession("mysqlx://user:password@localhost");

$session->sql("DROP DATABASE IF EXISTS addressbook")->execute();
$session->sql("CREATE DATABASE addressbook")->execute();

$schema = $session->getSchema("addressbook");
$collection = $schema->createCollection("people");

$result = $collection->add('{"name": "Alfred", "age": 42, "job": "Butler"}')->execute();

/ Eine eindeutige _id wird (standardmäßig und empfohlen) vom MySQL-Server erzeugt.
/ Dies ruft die erzeugten _id's ab; in diesem Beispiel nur eine, also $ids[0]
$ids = $result->getGeneratedIds();
$alfreds_id = $ids[0];

/ ...

print_r($alfreds_id);
print_r($collection->getOne($alfreds_id));
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

00005b6b536100000000000000b1

Array
(
    [_id] => 00005b6b536100000000000000b1
    [age] => 42
    [job] => Butler
    [name] => Alfred
)
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top

Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!

Check out: eBank.nz (Art Generator) | Netwrck.com (AI Tools) | Text-Generator.io (AI API) | BitBank.nz (Crypto AI) | ReadingTime (Kids Reading) | RewordGame | BigMultiplayerChess | WebFiddle | How.nz | Helix AI Assistant