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

JUnit con DataClassG

JUnit con DataClassG 0. ESQUEMA Services: Por cada beans crearemos una clase Services que se encargará de interactuar con el controller para realizar las operaciones de la base de datos. Se crearan los métodos insert, update,delete y los demas metodos para realizar las diversas operaciones. Test: Se crearán las clases para test de las clases Services. Form: Los formularios para la interactuar con el usuario. ProvinciasServices.java colocamos los métodos, insert, update,delete public class ProvinciasServices {    ProvinciasController provinciasController = new ProvinciasController();    public ProvinciasServices() {    }    public Boolean insert (Provincias provincias){        try{            if(provinciasController.insert(provincias)){              return tru...

Primefaces v13

 La versión nueva de primefaces v13.0 elimina el componente <p:repeat>  Consulte los cambios en  https://github.com/primefaces/primefaces/releases/tag/13.0.0 por lo tanto si necesita una solución similar considere utilizar  <p:carousel>  o  <ui:repeat> En la versión 13 genera una excepción