|
|
@@ -8,6 +8,7 @@ import java.sql.SQLException; |
|
|
|
import java.sql.Statement;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import xyz.veronie.bgg.result.Thing;
|
|
|
|
import xyz.veronie.bgg.result.ThingMetaData;
|
|
|
|
|
|
|
|
public class SqliteController {
|
|
|
@@ -91,7 +92,7 @@ public class SqliteController { |
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void addToThingList(String name, List<ThingMetaData> things) {
|
|
|
|
public void addToThingList(String name, List<Thing> things) {
|
|
|
|
try {
|
|
|
|
|
|
|
|
Statement stmt = connection.createStatement();
|
|
|
@@ -103,13 +104,14 @@ public class SqliteController { |
|
|
|
PreparedStatement listToThingStatement = connection
|
|
|
|
.prepareStatement("INSERT INTO ThingListToThing VALUES (?, ?)");
|
|
|
|
|
|
|
|
for (ThingMetaData thing : things) {
|
|
|
|
thingStatement.setInt(1, thing.getId());
|
|
|
|
thingStatement.setString(2, thing.getName());
|
|
|
|
thingStatement.setString(3, thing.getImgURL());
|
|
|
|
thingStatement.setString(4, thing.getThumbURL());
|
|
|
|
thingStatement.setString(5, thing.getComment());
|
|
|
|
thingStatement.setInt(6, thing.getNumPlays());
|
|
|
|
for (Thing thing : things) {
|
|
|
|
ThingMetaData metaData = thing.getMetaData();
|
|
|
|
thingStatement.setInt(1, metaData.getId());
|
|
|
|
thingStatement.setString(2, metaData.getName());
|
|
|
|
thingStatement.setString(3, metaData.getImgURL());
|
|
|
|
thingStatement.setString(4, metaData.getThumbURL());
|
|
|
|
thingStatement.setString(5, metaData.getComment());
|
|
|
|
thingStatement.setInt(6, metaData.getNumPlays());
|
|
|
|
thingStatement.addBatch();
|
|
|
|
// get generated id
|
|
|
|
ResultSet keys = thingStatement.getGeneratedKeys();
|
|
|
|