
|
If you were logged in you would be able to see more operations.
|
|
|
| Planning Status: |
Unspecified
|
|
CREATE EXCEPTION CHECK_EXCEPTION 'Check exception';
EXECUTE BLOCK
AS
BEGIN
EXCEPTION CHECK_EXCEPTION
(SELECT LIST('WORD') FROM RDB$DATABASE);
END
Executing this block throws exception:
Overflow occurred during data type conversion.
conversion error from string "BLOB".
|
|
Description
|
CREATE EXCEPTION CHECK_EXCEPTION 'Check exception';
EXECUTE BLOCK
AS
BEGIN
EXCEPTION CHECK_EXCEPTION
(SELECT LIST('WORD') FROM RDB$DATABASE);
END
Executing this block throws exception:
Overflow occurred during data type conversion.
conversion error from string "BLOB". |
Show » |
|
EXCEPTION CHECK_EXCEPTION
CAST ('WORD' AS BLOB SUB_TYPE TEXT);