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
lmtoo opened SPR-17097 and commented
I have a table, defined as follows:
create table im.t_process_instance_attributescreate table im.t_process_instance_attributes( ownerId int default '0' not null, `key` varchar(50) default '' not null, value varchar(200) null, primary key (ownerId, `key`));
While SimpleJdbcInsert generated insert sql is:
SimpleJdbcInsert
INSERT INTO t_process_instance_attributes (ownerId, key, value) VALUES(?, ?, ?)
Key column doesn't have escape symbol, and BadSqlGrammarException is thrown.
BadSqlGrammarException
No further details from SPR-17097
The text was updated successfully, but these errors were encountered:
Duplicate of #13874
Sorry, something went wrong.
@ledoyen, thanks for pointing that out.
Closing this issue as a duplicate of #13874.
@sbrannen
I think you wanted to mention @leolee192 😉
Indeed. Sorry about the noise. I'll just blame that on auto-correct.
No branches or pull requests
lmtoo opened SPR-17097 and commented
I have a table, defined as follows:
While
SimpleJdbcInsert
generated insert sql is:Key column doesn't have escape symbol, and
BadSqlGrammarException
is thrown.No further details from SPR-17097
The text was updated successfully, but these errors were encountered: