Interface ISqlTranslator

All Known Implementing Classes:
SqlTranslator

public interface ISqlTranslator
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    translate(String original)
    Translates the given query to the target language.
  • Method Details

    • canConvert

      boolean canConvert(String from, String to)
    • translate

      String translate(String original)
      Translates the given query to the target language. Uses the translation rules set by this and the target translators.
      Parameters:
      original - Original query to be translated.
      Returns:
      Translated query.