Client::__construct

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

Client::__constructКонструктор класса Client

Описание

private mysql_xdevapi\Client::__construct()

Конструктор класса Client.

Список параметров

У этой функции нет параметров.

Примеры

Пример #1 Пример использования 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 add a note

User Contributed Notes

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