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
When retrieving a BLOB, the BLOB (blob.Data) retrieved is a maximum of 32kB, even though the BLOB in the database is significantly larger.
blob.Data
var blob go_ora.Blob err = db.QueryRow("SELECT BLOBFIELD FROM TABLE WHERE ID = :id", sql.Named("id", id)).Scan(&blob)
The text was updated successfully, but these errors were encountered:
use url option lob fetch=post
lob fetch=post
Sorry, something went wrong.
When retrieving a BLOB, the BLOB (blob.Data) retrieved is a maximum of 32kB, even though the BLOB in the database is significantly larger. var blob go_ora.Blob err = db.QueryRow("SELECT BLOBFIELD FROM TABLE WHERE ID = :id", sql.Named("id", id)).Scan(&blob)
use lob fetch=post in urlOptions
No branches or pull requests
When retrieving a BLOB, the BLOB (
blob.Data
) retrieved is a maximum of 32kB, even though the BLOB in the database is significantly larger.The text was updated successfully, but these errors were encountered: