Skip to content
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

fix OCI8 driver default escape character, as stated in issue #3757 #3759

Closed
wants to merge 1 commit into from

Conversation

pabloveliz
Copy link

With the default DB escape character, the SQL statement generated by the oci8 driver was producing an ORA-00904:invalid identifier error. ie:

SELECT "code", "description" FROM "SALES"."EXCHANGE" WHERE "company" = 'GOOG'

The problem was that the escaping char was not defined as in the other drivers, which should be empty, so the query would be:

SELECT code, description FROM SALES.EXCHANGE WHERE company = 'GOOG'

@narfbg
Copy link
Contributor

narfbg commented Apr 11, 2015

No, it should not be empty and this is not a bug.

@narfbg narfbg closed this Apr 11, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants