Files
MaxScale/system-test/rwsplit_php_stmt.php
Esa Korhonen 08f5174915 MXS-2900 Rename maxscale-system-test directory to system-test
A link with the old directory name is provided.
2020-07-28 15:24:27 +03:00

20 lines
419 B
PHP

<?php
$options = [
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
PDO::ATTR_EMULATE_PREPARES => false,
];
$host=$argv[1];
$port=$argv[2];
$user=$argv[3];
$pass=$argv[4];
$dsn = "mysql:host=".$host.";port=".$port.";dbname=information_schema";
$dbh = new PDO( $dsn, $user, $pass, $options );
$res = $dbh
->query( "SELECT COLLATION_NAME FROM COLLATIONS" )
->fetch( PDO::FETCH_COLUMN );
var_dump( $res );