23 lines
363 B
Java
23 lines
363 B
Java
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();
|
|
}
|