Skip to main content

DataClassG v2.5


Ya esta disponible la versión 2.5 de DataClassG
http://plugins.netbeans.org/plugin/39424/?show=true
Posee mejoras en el rendimiento, soporte para transacciones.
La clase DataGManager permite administrar las conexiones.

          DataGManager dataGManager = new DataGManager();
             dataGManager.OpenConnection();

Transacciones
Puedes indicar si deseasusar transacciones o no.

                          dataGManager.WithOutTransaction();
                          dataGManager.BeginTransaction();
                          dataGManager.Commit();
                          dataGManager.Roolback();
                          dataGManager.EndTransaction();


Comments

KSOFT said…
Buenas!
Solicito ayuda, alguien ha conectado SQLSERVER 2008 con DataClassG?
Si me pudieran ayudar se los agradecería mucho!!!
KSOFT said…
DataClassG con SQLServer 2008 + iReports
avbravo said…
amigo cual es tu email?
Anonymous said…
What's up, I want to subscribe for this blog to take most
recent updates, thus where can i do it please assist.
Anonymous said…
I used to be able to find good info from your content.
Anonymous said…
Whoa! This blog looks just like my old one! It's on a entirely different topic but it has pretty
much the same layout and design. Great choice
of colors!
Anonymous said…
Have you ever thought about writing an ebook or guest authoring on other websites?

I have a blog based on the same topics you discuss and would love to have you share some stories/information. I know
my subscribers would appreciate your work. If you're even remotely interested, feel free
to shoot me an e mail.
Anonymous said…
Thank you for the blog post. Thomas and I are actually saving to
buy a new e book on this subject and your blog post has made all of us
to save all of our money. Your notions really responded to all our queries.

In fact, in excess of what we had acknowledged ahead of the time we discovered your fantastic blog.
I actually no longer nurture doubts and a troubled mind because you have attended to each of our needs in this article.
Thanks
Anonymous said…
I'm gone to tell my little brother, that he should also visit this blog on regular basis to obtain updated from most up-to-date information.

Popular posts from this blog

Tutorial básico de aplicaciones Web con NetBeans parte 1

NetBeans ofrece un excelente soporte para el desarrollo de aplicaciones Web, en esta ocasión lo haremos utilizando el Framework Java Server Faces 2.0. En el Menu Seleccionamos Nuevo->Proyecto y luego en Categorias Java Web y en tipo de Proyectos Web  Application indicamos el nombre del proyecto Seleccinamos el servidor Web, usamos GlassFish ya que este soporta EJB3.0 y JSF 2.0 Framework Java Server Faces El IDE genera el esquelto del proyecto Web Pages   almacenamos las paginas .html, xhtml, jsf, los archivos de recursos, los scripts .js, imagenes Source Packages    Son las clases Java  Test Packages    Son las clases que usamos para los Test Libraries     Tenemos las bibliotecas de Java y GlassFish necesarias para ejecutar la aplicación Web. Test Libraries     Están las bibliotecas usadas para los test  Configuration Files    Archivos de configuración de la aplicación. Ejecutamos la...

Incrementar Memoria NetBeans

Algunas veces necesitamos incrementar la memoria para un mejor rendimiento. http://www.netbeans.org/community/releases/55/uml-download.html Este es un ejemplo para UML. Descripción en ingles. Increasing Memory Settings (applicable to all builds) The default memory settings for NetBeans should be increased for UML projects. If you have the available memory, Locate your NetBeans installation directory ($install_dir). This can be found by starting up NetBeans and selecting Help -> About then select the Detail tab. Edit the $install_dir/etc/netbeans.conf file. Find the line defining netbeans_default_options . Increase the maximum memory attribute to -J-Xmx512m. If you experience heap overflows while working with larger files, you should increase this value further.

Test con JUnit

El viernes dicte un taller en el que conversábamos sobre Tecnologías Java y luego desarrollamos una aplicación muy básica para demostrar como utilizar JUnit con NetBeans. Pasos: 1. Crear un proyecto Desktop con NetBeans 2. Crear una clase llamada Operaciones 3. Diseñados un formulario y agregramos componentes de manera que quede similar a la figura Código de los botones try { double a = Double.parseDouble(jTextField1.getText()); double b = Double.parseDouble(jTextField2.getText()); Operaciones operaciones = new Operaciones(); double r = operaciones.Sumar(a, b); jTextField3.setText(String.valueOf(r)); } catch (Exception ex) { JOptionPane.showMessageDialog(this, ex.getMessage().toString()); } 4. Creamos los test Seleccionamos las clases En el menu Herramientas,seleccionamos Crear pruebas JUnit Seleccionamos la versión de JUnit En la ventana siguiente seleccionamos los parámetros para nuestras pruebas . Le quitamos la selección a Probar Inicializador y Probar Finalizador NetBeans crea las...