public class PessoasDAO extends DataBase {
public PessoasDAO(Context context) {
super(context);
public Pessoas findByPass(String senhaLogin) {
String sql = "SELECT * FROM pessoas WHERE SENHA_PESS = ?";
String[] argumentos = new String[] { senhaLogin };
Cursor cursor = database.rawQuery(sql, argumentos);
cursor.moveToFirst();
return montarPessoa(cursor);
}
//MONTAR PESSOA
public Pessoas montarPessoa(Cursor cursor) {
if (cursor.getCount() == 0) {
return null;
}else {
long id = cursor.getLong(cursor.getColumnIndex("COD_PESS"));
String nome = cursor.getString(cursor.getColumnIndex("NOM_PESS"));
String funcao = cursor.getString(cursor.getColumnIndex("FUNC_PESS"));
String senha = cursor.getString(cursor.getColumnIndex("SENHA_PESS"));
return new Pessoas(id, nome, funcao, senha);
}
Above my DAO class and below the People class. How should I implement the Controller class so that the data of the people class retrieved from the BD is brought to the activity through the serializable.
public class Pessoas implements Serializable {
private Long id;
private String nome;
private String funcao;
private String senha;
public Pessoas(long id, String nome, String funcao, String senha) {
this.id = id;
this.nome = nome;
this.funcao = funcao;
this.senha = senha;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getNome() {
return nome;
}
public void setNome(String nome) {
this.nome = nome;
}
public String getFuncao() {
return funcao;
}
public void setFuncao(String funcao) {
this.funcao = funcao;
}
public String getSenha() {
return senha;
}
public void setSenha(String senha) {
this.senha = senha;
}