Exceptions
5 days ago
apache.php
5 days ago
apcu.php
5 days ago
array.php
5 days ago
bzip2.php
5 days ago
calendar.php
5 days ago
classobj.php
5 days ago
com.php
5 days ago
cubrid.php
5 days ago
curl.php
5 days ago
datetime.php
5 days ago
dir.php
5 days ago
eio.php
5 days ago
errorfunc.php
5 days ago
exec.php
5 days ago
fileinfo.php
5 days ago
filesystem.php
5 days ago
filter.php
5 days ago
fpm.php
5 days ago
ftp.php
5 days ago
funchand.php
5 days ago
functionsList.php
5 days ago
gmp.php
5 days ago
gnupg.php
5 days ago
hash.php
5 days ago
ibase.php
5 days ago
ibmDb2.php
5 days ago
iconv.php
5 days ago
image.php
5 days ago
imap.php
5 days ago
info.php
5 days ago
ingres-ii.php
5 days ago
inotify.php
5 days ago
json.php
5 days ago
ldap.php
5 days ago
libxml.php
5 days ago
lzf.php
5 days ago
mailparse.php
5 days ago
mbstring.php
5 days ago
misc.php
5 days ago
msql.php
5 days ago
mysql.php
5 days ago
mysqli.php
5 days ago
mysqlndMs.php
5 days ago
mysqlndQc.php
5 days ago
network.php
5 days ago
oci8.php
5 days ago
opcache.php
5 days ago
openssl.php
5 days ago
outcontrol.php
5 days ago
password.php
5 days ago
pcntl.php
5 days ago
pcre.php
5 days ago
pdf.php
5 days ago
pgsql.php
5 days ago
posix.php
5 days ago
ps.php
5 days ago
pspell.php
5 days ago
readline.php
5 days ago
rpminfo.php
5 days ago
rrd.php
5 days ago
sem.php
5 days ago
session.php
5 days ago
shmop.php
5 days ago
simplexml.php
5 days ago
sockets.php
5 days ago
sodium.php
5 days ago
solr.php
5 days ago
spl.php
5 days ago
sqlsrv.php
5 days ago
ssdeep.php
5 days ago
ssh2.php
5 days ago
stream.php
5 days ago
strings.php
5 days ago
swoole.php
5 days ago
uodbc.php
5 days ago
uopz.php
5 days ago
url.php
5 days ago
var.php
5 days ago
xdiff.php
5 days ago
xml.php
5 days ago
xmlrpc.php
5 days ago
yaml.php
5 days ago
yaz.php
5 days ago
zip.php
5 days ago
zlib.php
5 days ago
mysqlndMs.php
113 lines
| 1 | <?php |
| 2 | |
| 3 | namespace ProfilePressVendor\Safe; |
| 4 | |
| 5 | use ProfilePressVendor\Safe\Exceptions\MysqlndMsException; |
| 6 | /** |
| 7 | * Returns a list of currently configured servers. |
| 8 | * |
| 9 | * @param mixed $connection A MySQL connection handle obtained from any of the |
| 10 | * connect functions of the mysqli, |
| 11 | * mysql or |
| 12 | * PDO_MYSQL extensions. |
| 13 | * @return array FALSE on error. Otherwise, returns an array with two entries |
| 14 | * masters and slaves each of which contains |
| 15 | * an array listing all corresponding servers. |
| 16 | * |
| 17 | * The function can be used to check and debug the list of servers currently |
| 18 | * used by the plugin. It is mostly useful when the list of servers changes at |
| 19 | * runtime, for example, when using MySQL Fabric. |
| 20 | * |
| 21 | * masters and slaves server entries |
| 22 | * @throws MysqlndMsException |
| 23 | * |
| 24 | */ |
| 25 | function mysqlnd_ms_dump_servers($connection): array |
| 26 | { |
| 27 | error_clear_last(); |
| 28 | $result = \ProfilePressVendor\mysqlnd_ms_dump_servers($connection); |
| 29 | if ($result === \false) { |
| 30 | throw MysqlndMsException::createFromPhpError(); |
| 31 | } |
| 32 | return $result; |
| 33 | } |
| 34 | /** |
| 35 | * MySQL Fabric related. |
| 36 | * |
| 37 | * Switch the connection to the nodes handling global sharding queries |
| 38 | * for the given table name. |
| 39 | * |
| 40 | * @param mixed $connection A MySQL connection handle obtained from any of the |
| 41 | * connect functions of the mysqli, |
| 42 | * mysql or |
| 43 | * PDO_MYSQL extensions. |
| 44 | * @param mixed $table_name The table name to ask Fabric about. |
| 45 | * @return array FALSE on error. Otherwise, TRUE |
| 46 | * @throws MysqlndMsException |
| 47 | * |
| 48 | */ |
| 49 | function mysqlnd_ms_fabric_select_global($connection, $table_name): array |
| 50 | { |
| 51 | error_clear_last(); |
| 52 | $result = \ProfilePressVendor\mysqlnd_ms_fabric_select_global($connection, $table_name); |
| 53 | if ($result === \false) { |
| 54 | throw MysqlndMsException::createFromPhpError(); |
| 55 | } |
| 56 | return $result; |
| 57 | } |
| 58 | /** |
| 59 | * MySQL Fabric related. |
| 60 | * |
| 61 | * Switch the connection to the shards responsible for the |
| 62 | * given table name and shard key. |
| 63 | * |
| 64 | * @param mixed $connection A MySQL connection handle obtained from any of the |
| 65 | * connect functions of the mysqli, |
| 66 | * mysql or |
| 67 | * PDO_MYSQL extensions. |
| 68 | * @param mixed $table_name The table name to ask Fabric about. |
| 69 | * @param mixed $shard_key The shard key to ask Fabric about. |
| 70 | * @return array FALSE on error. Otherwise, TRUE |
| 71 | * @throws MysqlndMsException |
| 72 | * |
| 73 | */ |
| 74 | function mysqlnd_ms_fabric_select_shard($connection, $table_name, $shard_key): array |
| 75 | { |
| 76 | error_clear_last(); |
| 77 | $result = \ProfilePressVendor\mysqlnd_ms_fabric_select_shard($connection, $table_name, $shard_key); |
| 78 | if ($result === \false) { |
| 79 | throw MysqlndMsException::createFromPhpError(); |
| 80 | } |
| 81 | return $result; |
| 82 | } |
| 83 | /** |
| 84 | * Returns an array which describes the last used connection from the plugins |
| 85 | * connection pool currently pointed to by the user connection handle. If using the |
| 86 | * plugin, a user connection handle represents a pool of database connections. |
| 87 | * It is not possible to tell from the user connection handles properties to which |
| 88 | * database server from the pool the user connection handle points. |
| 89 | * |
| 90 | * The function can be used to debug or monitor PECL mysqlnd_ms. |
| 91 | * |
| 92 | * @param mixed $connection A MySQL connection handle obtained from any of the |
| 93 | * connect functions of the mysqli, |
| 94 | * mysql or |
| 95 | * PDO_MYSQL extensions. |
| 96 | * @return array FALSE on error. Otherwise, an |
| 97 | * array which describes the connection used to |
| 98 | * execute the last statement on. |
| 99 | * |
| 100 | * Array which describes the connection. |
| 101 | * @throws MysqlndMsException |
| 102 | * |
| 103 | */ |
| 104 | function mysqlnd_ms_get_last_used_connection($connection): array |
| 105 | { |
| 106 | error_clear_last(); |
| 107 | $result = \ProfilePressVendor\mysqlnd_ms_get_last_used_connection($connection); |
| 108 | if ($result === \false) { |
| 109 | throw MysqlndMsException::createFromPhpError(); |
| 110 | } |
| 111 | return $result; |
| 112 | } |
| 113 |