Database
month.txt
Associated article: Month-Text Ordering
Tags: Database
Published source code accompanying the article by David Wincelberg in which he presents a month field-type that can be a useful addition to your database toolbox. Also see MONTH.ZIP.
Month-Text Ordering
by David Wincelberg
Listing One
import java.util.Hashtable;
public class MonthOrder implements SortTest {
Hashtable map = new Hashtable();
public MonthOrder() {
MonthInfo[] monthList = new MonthInfo[24];
monthList[0] = new MonthInfo ("JANUARY", 1);
monthList[1] = new MonthInfo ("FEBRUARY", 2);
monthList[2] = new ...


