Package persistencia

Examples of persistencia.SubtipoClass


            }

            TipoClass Tipo = new TipoClass(conn);
            //System.out.println(Tipo.addTipo("TipoNovo"));

            SubtipoClass subTipo = new SubtipoClass(conn);
            Random a = new Random();
            Integer valor = a.nextInt(6);
            System.out.println(valor.toString());
            System.out.println(subTipo.addSubtipo(valor, "NovoSubtipo" + valor.toString()));

            ResultSet rs = conn.createStatement().executeQuery("SELECT * FROM TIPO");
            rs.beforeFirst();
            Integer A;
            String B;
View Full Code Here

TOP

Related Classes of persistencia.SubtipoClass

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.