Posts

Showing posts from April, 2017

How To - Creating An Auto SQL Query Class In Java

This class was developed to eliminate the need to type SQL statements, in any java application where databases are used.  This class needs 'AutoDBConnect' class to work properly. it will able to add, edit and delete images from a DB.

How To - Creating A Textbox ( jTextbox) Validation Class In Java

This class was developed to be used in a java windows form application to validated jtextboxes easily. 1. Add the class to project 2. Create an object 3. use appropriate method with your parameters eg;- AutoValidation validation =new AutoValidation(); validation.ValidationCheck(CustomerId, true,0,'@'); so here CustomerID is jTextbox and true is to check if it's empty and 0 means no length check and @ is a special character so you can input number and alphabetic. Read class comments for more information Download Source Code