|
|
@ -388,6 +388,7 @@ final class dbTable implements kelondroIndex {
|
|
|
|
result.close();
|
|
|
|
result.close();
|
|
|
|
sqlStatement.close();
|
|
|
|
sqlStatement.close();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (value == null) return null;
|
|
|
|
kelondroRow.Entry entry = this.rowdef.newEntry(value);
|
|
|
|
kelondroRow.Entry entry = this.rowdef.newEntry(value);
|
|
|
|
return entry;
|
|
|
|
return entry;
|
|
|
|
} catch (Exception e) {
|
|
|
|
} catch (Exception e) {
|
|
|
@ -412,7 +413,7 @@ final class dbTable implements kelondroIndex {
|
|
|
|
PreparedStatement sqlStatement = this.theDBConnection.prepareStatement(sqlQuery);
|
|
|
|
PreparedStatement sqlStatement = this.theDBConnection.prepareStatement(sqlQuery);
|
|
|
|
|
|
|
|
|
|
|
|
sqlStatement.setString(1, new String(row.getColString(0, null)));
|
|
|
|
sqlStatement.setString(1, new String(row.getColString(0, null)));
|
|
|
|
sqlStatement.setBytes(2, row.getColBytes(1));
|
|
|
|
sqlStatement.setBytes(2, row.bytes());
|
|
|
|
sqlStatement.execute();
|
|
|
|
sqlStatement.execute();
|
|
|
|
|
|
|
|
|
|
|
|
sqlStatement.close();
|
|
|
|
sqlStatement.close();
|
|
|
|