Examples of salvarQuestao()


Examples of PackDAO.QuestaoDAO.salvarQuestao()

        try {
            if(a==true && b==true && c==true && afirmacoes.length > 2){
                Questao q = new Questao(enunciado,"v_ou_f", disciplina,grau,professor, tags, up_imagem, up_doc);
                QuestaoDAO qdao = new QuestaoDAO();
                qdao.salvarQuestao(q);
                RespostaDAO rdao = new RespostaDAO();
                int idResposta = qdao.maxID();
                if(up_imagem[0].length()>0)
                    qdao.salvarImagem(up_imagem, idResposta);
                if(up_doc[0].length()>0)
View Full Code Here

Examples of PackDAO.QuestaoDAO.salvarQuestao()

        c = Tratamento.isValid(tags[0], 4);
        try {
            if(a==true && b==true && c==true){
                Questao q = new Questao(enunciado,"aberta", disciplina,grau,nome_professor, tags, up_imagem, up_doc);
                QuestaoDAO qdao = new QuestaoDAO();
                qdao.salvarQuestao(q);
                RespostaDAO rdao = new RespostaDAO();
                int idResposta = qdao.maxID();
                if(up_imagem[0].length()>0)
                    qdao.salvarImagem(up_imagem, idResposta);
                if(up_doc[0].length()>0)
View Full Code Here

Examples of PackDAO.QuestaoDAO.salvarQuestao()

        c = Tratamento.isValid(tags[0], 4);
        try {
            if(a==true && b==true && c==true && d == true){
                Questao q = new Questao(enunciado,"multipla", disciplina,grau,professor, tags, up_imagem, up_doc);
                QuestaoDAO qdao = new QuestaoDAO();
                qdao.salvarQuestao(q);
                RespostaDAO rdao = new RespostaDAO();
                int idResposta = qdao.maxID();
                if(up_imagem[0].length()>0)
                    qdao.salvarImagem(up_imagem, idResposta);
                if(up_doc[0].length()>0)
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.