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
While saving associations this SQL is generated for oracle: INSERT INTO amg_user_interest ("amg_user_id","interest_id") VALUES (1234602,1)
It happens due to escaping of values in driver.js (line 45) that generate " in the column names.
Changing this function in oracle.js (changed return '"' + columnName + '"'; to return columnName;
escapeColumnName: function (columnName) { //return '"' + columnName + '"'; return columnName; }
Error: Error starting at line 25 in command: INSERT INTO amg_user_interest ("amg_user_id","interest_id") VALUES (1234602,1) Error at Command Line:25 Column:45 Error report: SQL Error: ORA-00904: "interest_id": invalid identifier 00904. 00000 - "%s: invalid identifier"
The text was updated successfully, but these errors were encountered:
This issue may just like the #73 and has been resolved. You can update the repo and try again.
Sorry, something went wrong.
That did not help. Version used latest (0.2.7)
PLS use the last commit 233008d
No branches or pull requests
While saving associations this SQL is generated for oracle:
INSERT INTO amg_user_interest ("amg_user_id","interest_id") VALUES (1234602,1)
It happens due to escaping of values in driver.js (line 45) that generate " in the column names.
Changing this function in oracle.js (changed return '"' + columnName + '"';
to return columnName;
escapeColumnName: function (columnName) {
//return '"' + columnName + '"';
return columnName;
}
Error:
Error starting at line 25 in command:
INSERT INTO amg_user_interest ("amg_user_id","interest_id") VALUES (1234602,1)
Error at Command Line:25 Column:45
Error report:
SQL Error: ORA-00904: "interest_id": invalid identifier
00904. 00000 - "%s: invalid identifier"
The text was updated successfully, but these errors were encountered: