slowquery commented on issue #6363:
URL: https://github.com/apache/shardingsphere/issues/6363#issuecomment-659321147


   ```
    String createBlockSQL = "INSERT INTO Block (DomainId, BlockName, 
BlockTimestamp)" +
         "VALUES (?, ?, ?, ?)";
         PreparedStatement createBlockQuery = 
conn.prepareStatement(createBlockSQL, Statement.RETURN_GENERATED_KEYS);
   
         Timestamp ts = new Timestamp(this.BlockTimestamp);
   
         createBlockQuery.setInt(1, this.DomainId);
         createBlockQuery.setInt(2, this.BlockName);
         createBlockQuery.setTimestamp(3, ts);
   
         int createBlockResult = createBlockQuery.executeUpdate();
   ```
   
   createBlockQuery.executeUpdate(); this function execute, an error occurred


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


Reply via email to