mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
88b9a9d54e
PR: 16264, 16265, 16266, 16267 Submitted by: joseph.scott@owp.csus.edu
14 lines
669 B
Plaintext
14 lines
669 B
Plaintext
The DBI interface allows perl programs to use DBD (Database Definition)
|
|
drivers with a common set of routines. A program can then (theoretically)
|
|
change from using mSQL to Oracle (for example) without changing the entire
|
|
program around.
|
|
|
|
This DBI interface is not yet fully specified. The current development
|
|
work is focused on writing drivers, such as DBD::Oracle, which also
|
|
implement emulations of old perl4 database interfaces, e.g., oraperl.
|
|
This strategy enables the DBI and drivers to serve a useful purpose
|
|
whilst allowing the real interface to evolve with experience behind the
|
|
emulation interface.
|
|
|
|
WWW: http://forteviot.symbolstone.org/technology/perl/DBI/
|