home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _06682bc0394f0813fb8592cf5a0ac26a < prev    next >
Text File  |  2000-03-23  |  4KB  |  119 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>AnyDBM_File - provide framework for multiple DBMs</TITLE>
  5. <LINK REL="stylesheet" HREF="../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> AnyDBM_File - provide framework for multiple DBMs</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <UL>
  26.  
  27.         <LI><A HREF="#dbm comparisons">DBM Comparisons</A></LI>
  28.     </UL>
  29.  
  30.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  31. </UL>
  32. <!-- INDEX END -->
  33.  
  34. <HR>
  35. <P>
  36. <H1><A NAME="name">NAME</A></H1>
  37. <P>AnyDBM_File - provide framework for multiple DBMs</P>
  38. <P>NDBM_File, DB_File, GDBM_File, SDBM_File, ODBM_File - various DBM implementations</P>
  39. <P>
  40. <HR>
  41. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  42. <UL>
  43. <LI>Linux</LI>
  44. <LI>Solaris</LI>
  45. <LI>Windows</LI>
  46. </UL>
  47. <HR>
  48. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  49. <PRE>
  50.     use AnyDBM_File;</PRE>
  51. <P>
  52. <HR>
  53. <H1><A NAME="description">DESCRIPTION</A></H1>
  54. <P>This module is a ``pure virtual base class''--it has nothing of its own.
  55. It's just there to inherit from one of the various DBM packages.  It
  56. prefers ndbm for compatibility reasons with Perl 4, then Berkeley DB (See
  57. <A HREF="../lib/DB_File.html">the DB_File manpage</A>), GDBM, SDBM (which is always there--it comes with Perl), and
  58. finally ODBM.   This way old programs that used to use NDBM via <A HREF="../lib/Pod/perlfunc.html#item_dbmopen"><CODE>dbmopen()</CODE></A>
  59. can still do so, but new ones can reorder @ISA:</P>
  60. <PRE>
  61.     BEGIN { @AnyDBM_File::ISA = qw(DB_File GDBM_File NDBM_File) }
  62.     use AnyDBM_File;</PRE>
  63. <P>Having multiple DBM implementations makes it trivial to copy database formats:</P>
  64. <PRE>
  65.     use POSIX; use NDBM_File; use DB_File;
  66.     tie %newhash,  'DB_File', $new_filename, O_CREAT|O_RDWR;
  67.     tie %oldhash,  'NDBM_File', $old_filename, 1, 0;
  68.     %newhash = %oldhash;</PRE>
  69. <P>
  70. <H2><A NAME="dbm comparisons">DBM Comparisons</A></H2>
  71. <P>Here's a partial table of features the different packages offer:</P>
  72. <PRE>
  73.                          odbm    ndbm    sdbm    gdbm    bsd-db
  74.                          ----    ----    ----    ----    ------
  75.  Linkage comes w/ perl   yes     yes     yes     yes     yes
  76.  Src comes w/ perl       no      no      yes     no      no
  77.  Comes w/ many unix os   yes     yes[0]  no      no      no
  78.  Builds ok on !unix      ?       ?       yes     yes     ?
  79.  Code Size               ?       ?       small   big     big
  80.  Database Size           ?       ?       small   big?    ok[1]
  81.  Speed                   ?       ?       slow    ok      fast
  82.  FTPable                 no      no      yes     yes     yes
  83.  Easy to build          N/A     N/A      yes     yes     ok[2]
  84.  Size limits             1k      4k      1k[3]   none    none
  85.  Byte-order independent  no      no      no      no      yes
  86.  Licensing restrictions  ?       ?       no      yes     no</PRE>
  87. <DL>
  88. <DT><STRONG><A NAME="item_%5B0%5D">[0]</A></STRONG><BR>
  89. <DD>
  90. on mixed universe machines, may be in the bsd compat library,
  91. which is often shunned.
  92. <P></P>
  93. <DT><STRONG><A NAME="item_%5B1%5D">[1]</A></STRONG><BR>
  94. <DD>
  95. Can be trimmed if you compile for one access method.
  96. <P></P>
  97. <DT><STRONG><A NAME="item_%5B2%5D">[2]</A></STRONG><BR>
  98. <DD>
  99. See <A HREF="../lib/DB_File.html">the DB_File manpage</A>. 
  100. Requires symbolic links.
  101. <P></P>
  102. <DT><STRONG><A NAME="item_%5B3%5D">[3]</A></STRONG><BR>
  103. <DD>
  104. By default, but can be redefined.
  105. <P></P></DL>
  106. <P>
  107. <HR>
  108. <H1><A NAME="see also">SEE ALSO</A></H1>
  109. <P>dbm(3), ndbm(3), DB_File(3), <A HREF="../lib/Pod/perldbmfilter.html">the perldbmfilter manpage</A></P>
  110. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  111. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  112. <STRONG><P CLASS=block> AnyDBM_File - provide framework for multiple DBMs</P></STRONG>
  113. </TD></TR>
  114. </TABLE>
  115.  
  116. </BODY>
  117.  
  118. </HTML>
  119.