Prototype Javascript – Introduction

Click this image to view the official website of Protoype
- INTRODUCTION -
I am currently working on a huge web-based application project for our customer in the United States. It is a customer (client) – company (server) end to end solution that tends to ease their business transactions by making them online – in short accessible [...]

Adding Libraries to a Dynamic Web Application in Eclipse

I am currently developing a simple web application that would apply the MVC architecture. To those new to the MVC term, it stands for Model-View-Controller. An architecture used for simple applications that separates the GUI pages (for end client), the business logic (reusable classes), and the controller (that controls the event or method call). You [...]

The Magic of PreparedStatement Interface

If you are working on a Java Project that requires data storage and manipulation, a Java interface could be of great help to you. The “PreparedStatement” interface, under “java.sql” package, pre compiles and stores your SQL statements in an object to efficiently execute the said statement multiple times. There are setter methods that you have [...]

Limiting Decimal Points in Java

Limiting the decimal points/places of a double/float value is very important mostly when you are dealing with average or amount. Usually, the JVM presents the maximum number of decimal places depending on the type used. Apparently, having more than three decimal points could be disturbing. Other languages like Turbo C/C++ deals with this by just [...]

Using “SELECTINDEX” property in Java Scripts

A college friend of mine asked for support re his Web Development project. He is developing an online banking application using HTML with Java Scripts. His page will be able to add deposits and subtracts withdrawals from the user’s current balance. A form selection (in a form of <SELECT> tag) is used to choose whether [...]