PHP Класс Google\Cloud\BigQuery\InsertResponse

This class should be not instantiated directly, but as a result of calling {@see \Google\Cloud\BigQuery\Table::insertRow()} or {@see \Google\Cloud\BigQuery\Table::insertRows()}.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
__construct ( array $info, array $rows )
failedRows ( ) : array Returns the rows which failed to insert along with their associated errors and index in the original data set.
info ( ) : array Retrieves the full API response.
isSuccessful ( ) : boolean Determines if the request was successful.

Описание методов

__construct() публичный Метод

public __construct ( array $info, array $rows )
$info array The API response.
$rows array The rows provided in the original request.

failedRows() публичный Метод

Example: $rows = $insertResponse->failedRows(); foreach ($rows as $row) { print_r($row['rowData']) . PHP_EOL; foreach ($row['errors'] as $error) { echo $error['reason'] . ': ' . $error['message'] . PHP_EOL; } }
См. также: https://cloud.google.com/bigquery/docs/reference/v2/tabledata/insertAll#response Tabledata insertAll API response documentation.
public failedRows ( ) : array
Результат array

info() публичный Метод

Example: $info = $insertResponse->info(); print_r($info['insertErrors']);
См. также: https://cloud.google.com/bigquery/docs/reference/v2/tabledata/insertAll#response Tabledata insertAll API response documentation.
public info ( ) : array
Результат array

isSuccessful() публичный Метод

Example: if (!$insertResponse->isSuccessful()) { print_r($insertResponse->failedRows()); }
public isSuccessful ( ) : boolean
Результат boolean