Package datos

Examples of datos.MotivoEntrada


    @Override
    public ArrayList select() {
       
        ArrayList hola=new ArrayList();
        ArrayList nombre=new ArrayList();
        MotivoEntrada objetoTipo= new MotivoEntrada();
       
        Connection conexion = DAOFactory.getConexion();
        PreparedStatement ps=null, qs=null;
        ResultSet rs = null, ss=null;
        try {
            if(objetoTipo.getTipo()==1)
            {
                 ps=conexion.prepareStatement(SQL.consultamotivosA);
            }
            else
                if(objetoTipo.getTipo()==2)
                {
                       ps=conexion.prepareStatement(SQL.consultamotivosP);
                }
            else
               
View Full Code Here

TOP

Related Classes of datos.MotivoEntrada

Copyright © 2018 www.massapicom. 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.