Feed on
Posts
Comments

Archive for February 19th, 2008

Servlet FAQ’s

This FAQ is part of the Code Style Help and FAQ section.

Read Full Post »

Servlet single threaded model

Typically, a servlet class is instantiated the first time it is invoked. The same instance will be used over several client requests, so all members that are declared in that servlet are shared accross clients. That is what is meant by multi threaded model, multiple clients that access the same instance.

Read Full Post »

A Relational Database Overview

A database is a means of storing information in such a way that information can be retrieved from it. In simplest terms, a relational database is one that presents information in tables with rows and columns. A table is referred to as a relation in the sense that it is a collection of objects [...]

Read Full Post »