Class VariableContext
- java.lang.Object
-
- io.rxmicro.annotation.processor.data.sql.model.VariableContext
-
public abstract class VariableContext extends Object
- Author:
- nedis
-
-
Constructor Summary
Constructors Constructor Description VariableContext()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description TableContextgetCurrentTable()abstract StringgetNextSequenceValue(String sequenceName)voidreleaseCurrentTable()voidsetCurrentTable(TableContext tableContext)
-
-
-
Method Detail
-
getCurrentTable
public final TableContext getCurrentTable()
-
setCurrentTable
public void setCurrentTable(TableContext tableContext)
-
releaseCurrentTable
public void releaseCurrentTable()
-
getNextSequenceValue
public abstract String getNextSequenceValue(String sequenceName) throws UnsupportedOperationException
- Parameters:
sequenceName- - sequence name- Returns:
- get next sequence value expression
- Throws:
UnsupportedOperationException- if variable context does not support sequences
-
-