Client::__construct

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

Client::__constructConstructeur du client

Description

private function mysql_xdevapi\Client::__construct()

Construit un objet client.

Liste de paramètres

Cette fonction ne contient aucun paramètre.

Exemples

Exemple #1 Exemple de mysql_xdevapi\Client::__construct()

<?php
$pooling_options = '{
  "enabled": true,
    "maxSize": 10,
    "maxIdleTime": 3600,
    "queueTimeOut": 1000
}';
$client = mysql_xdevapi\getClient($connection_uri, $pooling_options);
$session = $client->getSession();
add a note

User Contributed Notes

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