JavaScript is disabled on your browser.
Skip navigation links
Overview
Class
Use
Tree
Deprecated
Index
Search
Help
org.frankframework.dbms
ISqlTranslator
Contents
Description
Method Summary
Method Details
canConvert(String, String)
translate(String)
Hide sidebar
Show sidebar
Interface ISqlTranslator
All Known Implementing Classes:
SqlTranslator
public interface
ISqlTranslator
Method Summary
All Methods
Instance Methods
Abstract Methods
Modifier and Type
Method
Description
boolean
canConvert
(
String
from,
String
to)
String
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.