11 lines
222 B
Java
11 lines
222 B
Java
|
|
package com.alttd.chat.objects;
|
||
|
|
|
||
|
|
import java.sql.PreparedStatement;
|
||
|
|
import java.sql.SQLException;
|
||
|
|
|
||
|
|
public interface BatchInsertable {
|
||
|
|
|
||
|
|
void prepareStatement(PreparedStatement preparedStatement) throws SQLException;
|
||
|
|
|
||
|
|
}
|