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
给一个建议 @Sql("insert into fruit(name, num) values(:1, :2)") 能不能写成 @Sql("insert into fruit(name, num) values({name},{num})") 或 @Sql("insert into fruit(name, num) values($name,$num)")
The text was updated successfully, but these errors were encountered:
或者写成 … values(?,?)
Sorry, something went wrong.
java8才支持从接口中取参数名字,之前都是不支持的
No branches or pull requests
给一个建议 @Sql("insert into fruit(name, num) values(:1, :2)") 能不能写成 @Sql("insert into fruit(name, num) values({name},{num})") 或 @Sql("insert into fruit(name, num) values($name,$num)")
The text was updated successfully, but these errors were encountered: