Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
13 lines
681 B
Text
13 lines
681 B
Text
DBIx::Sequence - A simple SQL92 ID generator
|
|
|
|
his module is intended to give easier portability to Perl database
|
|
application by providing a database independant unique ID generator.
|
|
This way, an application developer is not bound to use his database's
|
|
SEQUENCE or auto_increment thus making his application portable on
|
|
multiple database environnements.
|
|
|
|
This module implements a simple Spin Locker mechanism and is garanteed
|
|
to return a unique value every time it is called, even with concurrent
|
|
processes. It uses your database for its state storage with ANSI SQL92
|
|
compliant SQL. All SQL queries inside DBIx::Sequence are pre cached and
|
|
very efficient especially under mod_perl.
|