Saturday 25 December 2010

Java: Code coverage for Eclipse

Code coverage describes the degree to which the source code of a program has been tested.

Java: JDBC basics

JDBC is an API for the Java programming language that defines how a client may access a database. It provides methods for querying and updating data in a database.

Tuesday 21 December 2010

Java: Parameterized unit tests with JUnit

JUnit is a unit testing framework for the Java programming language.In this article I will explain how to create test with predefined values.This feature works in JUnit 4.

Wednesday 15 December 2010

Sunday 12 December 2010

JavaEE : Hibernate tutorial


Hibernate is an object-relational mapping (ORM) library for the Java language, providing a framework for mapping an object-oriented domain model to a traditional relational database.

Friday 3 December 2010

PHP: Working with XML

In this article I'll implement base functions to interact with XML like: loading, showing, saving, adding, deleting, editing.