Interface ISqlLoader
-
- All Superinterfaces:
IPopulationLoader
- All Known Implementing Classes:
SqlLoader
public interface ISqlLoader extends IPopulationLoader
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidbatchRelate()InputStreamgetIn()OutputStreamgetOut()voidinsert(String tableName, List<Object> values)voidlink(Integer relnum, List<Object> instids)voidsetIn(InputStream in)voidsetOut(OutputStream out)-
Methods inherited from interface io.ciera.runtime.instanceloading.IPopulationLoader
load, serialize, serialize
-
-
-
-
Method Detail
-
insert
void insert(String tableName, List<Object> values) throws XtumlException
- Throws:
XtumlException
-
link
void link(Integer relnum, List<Object> instids) throws XtumlException
- Throws:
XtumlException
-
batchRelate
void batchRelate() throws XtumlException- Throws:
XtumlException
-
setIn
void setIn(InputStream in)
-
getIn
InputStream getIn()
-
setOut
void setOut(OutputStream out)
-
getOut
OutputStream getOut()
-
-