我正在尝试使用jooq插入花括号作为String的一部分。
Example: insert into test values ({'open braces{randomtext} present'})
克服第一次大括号的问题(https://github.com/jOOQ/jOOQ/issues/4408)我试过
sql = insert into test values ({{'open braces not present'}}) it worked.
但我无法执行类似的语句
insert into test values ({{'open braces { yes } present'}})
。抛出ArrayOutofBoundException。