Posts

Showing posts from 2017

(Sinhala) How TO Use Visual Studio 2015 With Oracle Database Video

Image
In this 3 videos i will show how to use Visual Studio 2015 with Oracle Database and do the basic functions such as Add, Edit, Delete and View.

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