lzbjut commented on issue #32283:
URL: 
https://github.com/apache/shardingsphere/issues/32283#issuecomment-2255704753

   but the problem is, some of my old project use only hibernate ,and column 
"condition" work fine, when i update my project to shardingsphere-jdbc,i 
encountered the problem that i can "resolve" using quote.
   
   but is that means i have to check every column i used in my project before 
using shardingsphere? 
   
   or why shardingsphere cannot support sql like tableName. reservedWord ?which 
it can be supported by jdbc,like this
   
           HikariDataSource dataSource = createHikariDataSource();
           PreparedStatement preparedStatement1 = 
dataSource.getConnection().prepareStatement("select vip_rule_item.id  , 
vip_rule_item.desc from vip_rule_item  where vip_rule_item.type=?");
           preparedStatement1.setString(1,"item");
           preparedStatement1.executeQuery();


-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to