in reply to Re: Database Record Order
in thread Database Record Order

Good advice. But you might want to replace:

$DBH = DBI->connect( $DSN, $USER, $PASS, { RaiserError => 1} );

With this:

$DBH = DBI->connect( $DSN, $USER, $PASS, { RaiseError => 1} );

;)

--
3dan