link start!
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
package com.tridium.orion.sql;
|
||||
|
||||
import com.tridium.orion.BIOrionObject;
|
||||
import com.tridium.orion.OrionType;
|
||||
|
||||
public interface BatchStatement {
|
||||
void add(BIOrionObject bIOrionObject);
|
||||
|
||||
void clear();
|
||||
|
||||
void execute();
|
||||
|
||||
BIOrionObject get(int i);
|
||||
|
||||
int getChunkSize();
|
||||
|
||||
OrionType getOrionType();
|
||||
|
||||
void setChunkSize(int i);
|
||||
|
||||
int size();
|
||||
}
|
||||
Reference in New Issue
Block a user