We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I have queries return with BLOB columns, but the BLOB is portable to String/text. If possible try to convert BLOB to String in Select return.
The column "MON$SQL_TEXT" from is an example: SELECT * FROM MON$STATEMENTS;
SELECT * FROM MON$STATEMENTS;
Is string but I got BLOB.
Thanks...
The text was updated successfully, but these errors were encountered:
I think BLOB is different of BLOB TEXT: https://www.firebirdsql.org/file/documentation/reference_manuals/fblangref25-en/html/fblangref-appx05-statements.html
Thanks.
Sorry, something went wrong.
actually i solved with separated query: SELECT CAST(SUBSTRING(MON$SQL_TEXT FROM 1 FOR 32000) AS VARCHAR(32000)) AS SQL_TEXT FROM MON$STATEMENTS;
But is more easy do "*" select.
No branches or pull requests
Hi,
I have queries return with BLOB columns, but the BLOB is portable to String/text.
If possible try to convert BLOB to String in Select return.
The column "MON$SQL_TEXT" from is an example:
SELECT * FROM MON$STATEMENTS;
Is string but I got BLOB.
Thanks...
The text was updated successfully, but these errors were encountered: