Enum DataExecutionErrorCode Stay organized with collections Save and categorize content based on your preferences.
DataExecutionErrorCode
An enumeration of data execution error codes.
To call an enum, you call its parent class, name, and property. For example,SpreadsheetApp.DataExecutionErrorCode.TIME_OUT
.
Properties
Property | Type | Description |
---|---|---|
DATA_EXECUTION_ERROR_CODE_UNSUPPORTED | Enum | A data execution error code that is not supported in Apps Script. |
NONE | Enum | The data execution has no error. |
TIME_OUT | Enum | The data execution timed out. Please update the data sourcespecification . |
TOO_MANY_ROWS | Enum | The data execution returns more rows than the limit. Please update the data sourcespecification . |
TOO_MANY_COLUMNS | Enum | The data execution returns more columns than the limit. Please update the data sourcespecification . |
TOO_MANY_CELLS | Enum | The data execution returns more cells than the limit. Please update the data sourcespecification . |
ENGINE | Enum | Data execution engine error. UseData for details. |
PARAMETER_INVALID | Enum | Invalid data execution parameter. The source cell must exist and contain only a number or text.Please update the data sourcespecification . |
UNSUPPORTED_DATA_TYPE | Enum | The data execution returns unsupported data type. Please update the data sourcespecification .For BigQuery, |
DUPLICATE_COLUMN_NAMES | Enum | The data execution returns duplicate column names. Please update the data sourcespecification . |
INTERRUPTED | Enum | The data execution is interrupted. Please refresh later. |
OTHER | Enum | Other errors. |
TOO_MANY_CHARS_PER_CELL | Enum | The data execution returns values that exceed the maximum characters allowed in a single cell.Please update the data sourcespecification . |
DATA_NOT_FOUND | Enum | The database referenced by the data source is not found. Please update the data sourcespecification . |
PERMISSION_DENIED | Enum | The user does not have access to the database referenced by the data source. Please update thedata sourcespecification or contact the owner of the billingproject to request access. |
Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-12-02 UTC.