AsyncMysqlErrorResult::failureType
The type of failure that produced this result
public function failureType(): string;
The string returned will be either 'TimedOut'
, representing a timeout, or
'Failed'
, representing the server rejecting the connection or query.
Returns
string
- the type of failure, either'TimedOut'
or'Failed'
.
Examples
When an error occurs when establishing a connection or on a query, and you catch the exception that is thrown, you will get an AsyncMysqlErrorResult
. And one of the methods on an AsyncMysqlErrorResult
is failureType()
, which tells you whether the operation was a timeout (via the string TimedOut
) or a server rejection of our connection or query (via the string Failed
).
use \Hack\UserDocumentation\API\Examples\AsyncMysql\ConnectionInfo as CI;
async function connect(
\AsyncMysqlConnectionPool $pool,
): Awaitable<\AsyncMysqlConnection> {
return await $pool->connect(
CI::$host,
CI::$port,
CI::$db,
CI::$user,
CI::$passwd,
);
}
async function simple_query_error(): Awaitable<int> {
$pool = new \AsyncMysqlConnectionPool(darray[]);
$conn = await connect($pool);
try {
$result = await $conn->query('SELECT bogus FROM bogus WHERE bogus = 1');
} catch (\AsyncMysqlQueryException $ex) {
$qr = $ex->getResult();
// Actually `AsyncMysqlQueryErrorResult`
\var_dump($qr is \AsyncMysqlErrorResult);
\var_dump($qr->failureType());
$conn->close();
return 0;
}
$conn->close();
return $result->numRows();
}
<<__EntryPoint>>
async function run(): Awaitable<void> {
$r = await simple_query_error();
\var_dump($r);
}
```.hhvm.expectf
bool(true)
string(6) "Failed"
int(%d)
```.example.hhvm.out
bool(true)
string(6) "Failed"
int(0)
```.skipif
await \Hack\UserDocumentation\API\Examples\AsyncMysql\skipif_async();