-
-
Notifications
You must be signed in to change notification settings - Fork 175
New issue
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
Problem with CLOB type input parameters. #490
Comments
I am working on testing all previous issues and fixing all regressions |
you should pass _, err = db.Exec("INSERT INTO table_test(file) values (:1)", go_ora.Clob{String: "XXXXXXXXXXXXX", Valid: true}) |
I need to validate whether the variable is null or not to be able to report True or False. Is there no way for the method receiving this value to perform this validation within the lib? This way it is transparent for whoever is implementing it. |
when using |
As of version v2.7.23, insertion into CLOB fields is no longer working, I had to go back to version v2.7.22 to make the insertions, it does the normal insertion but it does not insert the content, the field remains empty in the table .
Example:
_, err = db.Exec("INSERT INTO table_test(file) values (:1)", go_ora.Clob{String: "XXXXXXXXXXXXX"})
The text was updated successfully, but these errors were encountered: