wangzhuangwei commented on issue #9250:
URL: https://github.com/apache/shardingsphere/issues/9250#issuecomment-770747383
public BaseSqlBuilder(JdbcFrameWork jdbcFrameWork) {
this.jdbcFrameWork = jdbcFrameWork;
switch (this.jdbcFrameWork) {
case SPRING_JDBC:
case HIBERNATE:
placeholderPrefix = ":";
break;
case MYBATIS:
placeholderPrefix = "#{";
placeholderSuffix = "}";
break;
default:
placeholderPrefix = "";
placeholderSuffix = "";
break;
}
}
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]