Skip to content
Snippets Groups Projects
Commit 90a694ca authored by Felix Sidokhine's avatar Felix Sidokhine
Browse files

added fix for offset and row count

Change-Id: I5265dd77a23ecd11a692dce706c94cebd1a2a0c7
parent dd1bac83
No related branches found
No related tags found
No related merge requests found
......@@ -28,6 +28,7 @@ import lombok.extern.slf4j.Slf4j;
import net.jami.datastore.main.DataStore;
import net.jami.jams.common.dao.DeleteStatementBuilder;
import net.jami.jams.common.dao.SelectStatementBuilder;
import net.jami.jams.common.dao.StatementConstraints;
import net.jami.jams.common.dao.StatementList;
import net.jami.jams.common.dao.UpdateStatementBuilder;
import net.jami.jams.common.dao.connectivity.SQLConnection;
......@@ -51,7 +52,7 @@ public abstract class AbstractDao<T> {
List<T> result = new ArrayList<>();
SQLConnection connection = DataStore.connectionPool.getConnection();
try{
PreparedStatement ps = SelectStatementBuilder.buildStatement(tableName,constraints,connection);
PreparedStatement ps = SelectStatementBuilder.buildStatement(tableName,constraints,null,connection);
ResultSet rs = ps.executeQuery();
while(rs.next()){
result.add(tClass.getConstructor(ResultSet.class).newInstance(rs));
......@@ -67,6 +68,28 @@ public abstract class AbstractDao<T> {
}
}
public List<T> getObjects(StatementList constraints,StatementConstraints statementConstraints){
List<T> result = new ArrayList<>();
SQLConnection connection = DataStore.connectionPool.getConnection();
try{
PreparedStatement ps = SelectStatementBuilder.buildStatement(tableName,constraints,statementConstraints,connection);
ResultSet rs = ps.executeQuery();
while(rs.next()){
result.add(tClass.getConstructor(ResultSet.class).newInstance(rs));
}
return result;
}
catch (Exception e){
log.error("An error has occurred while trying to fetch a device: " + e.toString());
return null;
}
finally {
DataStore.connectionPool.returnConnection(connection);
}
}
public boolean updateObject(StatementList update, StatementList constraints){
SQLConnection connection = DataStore.connectionPool.getConnection();
try{
......
......@@ -29,6 +29,7 @@ import java.sql.PreparedStatement;
public class SelectStatementBuilder {
public static PreparedStatement buildStatement(String table, StatementList statementElements,
StatementConstraints statementConstraints,
SQLConnection connection) throws Exception
{
PreparedStatement ps = null;
......@@ -55,6 +56,10 @@ public class SelectStatementBuilder {
}
}
else{
if(statementConstraints != null){
stringBuilder.append(" LIMIT ").append(statementConstraints.getRowCount())
.append(" OFFSET ").append(statementConstraints.getOffset());
}
ps = connection.getConnection().prepareStatement(stringBuilder.toString());
}
return ps;
......
package net.jami.jams.common.dao;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
public class StatementConstraints {
private Long rowCount;
private Long offset;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment