public void setDecimal(Column storeColumn, BigDecimal value) {
   try {
     ndbOperation.setDecimal(storeColumn.getName(), value);
   } catch (NdbApiException ndbApiException) {
     throw new ClusterJDatastoreException(local.message("ERR_Datastore"), ndbApiException);
   }
 }