Changes
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:9k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. 0.1
  2.     First Release.
  3. 0.2
  4.     When DB_File is opening a database file it no longer terminates the
  5.     process if dbopen returned an error. This allows file protection
  6.     errors to be caught at run time. Thanks to Judith Grass
  7.     <grass@cybercash.com> for spotting the bug.
  8. 0.3
  9.     Added prototype support for multiple btree compare callbacks.
  10. 1.0
  11.     DB_File has been in use for over a year. To reflect that, the
  12.     version number has been incremented to 1.0.
  13.     Added complete support for multiple concurrent callbacks.
  14.     Using the push method on an empty list didn't work properly. This
  15.     has been fixed.
  16. 1.01
  17.     Fixed a core dump problem with SunOS.
  18.     The return value from TIEHASH wasn't set to NULL when dbopen
  19.     returned an error.
  20. 1.02
  21.     Merged OS/2 specific code into DB_File.xs
  22.     Removed some redundant code in DB_File.xs.
  23.     Documentation update.
  24.     Allow negative subscripts with RECNO interface.
  25.     Changed the default flags from O_RDWR to O_CREAT|O_RDWR.
  26.     The example code which showed how to lock a database needed a call
  27.     to sync added. Without it the resultant database file was empty.
  28.     Added get_dup method.
  29. 1.03
  30.     Documentation update.
  31.     DB_File now imports the constants (O_RDWR, O_CREAT etc.) from Fcntl
  32.     automatically.
  33.     The standard hash function exists is now supported.
  34.     Modified the behavior of get_dup. When it returns an associative
  35.     array, the value is the count of the number of matching BTREE
  36.     values.
  37. 1.04
  38.     Minor documentation changes.
  39.     Fixed a bug in hash_cb. Patches supplied by Dave Hammen,
  40.     <hammen@gothamcity.jsc.nasa.govt>.
  41.     Fixed a bug with the constructors for DB_File::HASHINFO,
  42.     DB_File::BTREEINFO and DB_File::RECNOINFO. Also tidied up the
  43.     constructors to make them -w clean.
  44.     Reworked part of the test harness to be more locale friendly.
  45. 1.05
  46.     Made all scripts in the documentation strict and -w clean.
  47.     Added logic to DB_File.xs to allow the module to be built after
  48.     Perl is installed.
  49. 1.06
  50.     Minor namespace cleanup: Localized PrintBtree.
  51. 1.07
  52.     Fixed bug with RECNO, where bval wasn't defaulting to "n".
  53. 1.08
  54.     Documented operation of bval.
  55. 1.09
  56.     Minor bug fix in DB_File::HASHINFO, DB_File::RECNOINFO and
  57.     DB_File::BTREEINFO.
  58.     Changed default mode to 0666.
  59. 1.10
  60.     Fixed fd method so that it still returns -1 for in-memory files
  61.     when db 1.86 is used.
  62. 1.11
  63.     Documented the untie gotcha.
  64. 1.12
  65.     Documented the incompatibility with version 2 of Berkeley DB.
  66. 1.13
  67.     Minor changes to DB_FIle.xs and DB_File.pm
  68. 1.14
  69.     Made it illegal to tie an associative array to a RECNO database and
  70.     an ordinary array to a HASH or BTREE database.
  71. 1.15
  72.     Patch from Gisle Aas <gisle@aas.no> to suppress "use of undefined
  73.     value" warning with db_get and db_seq.
  74.     Patch from Gisle Aas <gisle@aas.no> to make DB_File export only the
  75.     O_* constants from Fcntl.
  76.     Removed the DESTROY method from the DB_File::HASHINFO module.
  77.     Previously DB_File hard-wired the class name of any object that it
  78.     created to "DB_File". This makes sub-classing difficult. Now
  79.     DB_File creats objects in the namespace of the package it has been
  80.     inherited into.
  81. 1.16
  82.    A harmless looking tab was causing Makefile.PL to fail on AIX 3.2.5
  83.     Small fix for the AIX strict C compiler XLC which doesn't like
  84.     __attribute__ being defined via proto.h and redefined via db.h. Fix
  85.     courtesy of Jarkko Hietaniemi.
  86. 1.50
  87.     DB_File can now build with either DB 1.x or 2.x, but not both at
  88.     the same time.
  89. 1.51
  90.     Fixed the test harness so that it doesn't expect DB_File to have
  91.     been installed by the main Perl build.
  92.     Fixed a bug in mapping 1.x O_RDONLY flag to 2.x DB_RDONLY equivalent
  93. 1.52
  94.    Patch from Nick Ing-Simmons now allows DB_File to build on NT.
  95.    Merged 1.15 patch.
  96. 1.53
  97.    Added DB_RENUMBER to flags for recno.
  98. 1.54
  99.    Fixed a small bug in the test harness when run under win32
  100.    The emulation of fd when useing DB 2.x was busted.
  101. 1.55
  102.    Merged 1.16 changes.
  103. 1.56
  104.    Documented the Solaris 2.5 mutex bug
  105. 1.57
  106.    If Perl has been compiled with Threads support,the symbol op will be
  107.    defined. This clashes with a field name in db.h, so it needs to be
  108.    #undef'ed before db.h is included.
  109. 1.58
  110.    Tied Array support was enhanced in Perl 5.004_57. DB_File now
  111.    supports PUSH,POP,SHIFT,UNSHIFT & STORESIZE.
  112.    Fixed a problem with the use of sv_setpvn. When the size is
  113.    specified as 0, it does a strlen on the data.  This was ok for DB
  114.    1.x, but isn't for DB 2.x.
  115. 1.59
  116.    Updated the license section.
  117.    Berkeley DB 2.4.10 disallows zero length keys. Tests 32 & 42 in
  118.    db-btree.t and test 27 in db-hash.t failed because of this change.
  119.    Those tests have been zapped.
  120.    Added dbinfo to the distribution.
  121. 1.60
  122.    Changed the test to check for full tied array support
  123. 1.61 19th November 1998
  124.    Added a note to README about how to build Berkeley DB 2.x when
  125.    using HP-UX.
  126.    Minor modifications to get the module to build with DB 2.5.x
  127.    Fixed a typo in the definition of O_RDONLY, courtesy of Mark Kettenis.
  128. 1.62 30th November 1998
  129.    Added hints/dynixptx.pl.
  130.    Fixed typemap -- 1.61 used PL_na instead of na
  131. 1.63 19th December 1998
  132.    * Fix to allow DB 2.6.x to build with DB_File
  133.    * Documentation updated to use push,pop etc in the RECNO example &
  134.      to include the find_dup & del_dup methods.
  135. 1.64 21st February 1999
  136.    * Tidied the 1.x to 2.x flag mapping code.
  137.    * Added a patch from Mark Kettenis <kettenis@wins.uva.nl> to fix a flag
  138.      mapping problem with O_RDONLY on the Hurd
  139.    * Updated the message that db-recno.t prints when tests 51, 53 or 55 fail.
  140. 1.65 6th March 1999
  141.    * Fixed a bug in the recno PUSH logic.
  142.    * The BOOT version check now needs 2.3.4 when using Berkeley DB version 2
  143. 1.66 15th March 1999
  144.    * Added DBM Filter code
  145. 1.67 6th June 1999
  146.    * Added DBM Filter documentation to DB_File.pm
  147.    * Fixed DBM Filter code to work with 5.004
  148.    * A few instances of newSVpvn were used in 1.66. This isn't available in
  149.      Perl 5.004_04 or earlier. Replaced with newSVpv.
  150. 1.68 22nd July 1999
  151.    * Merged changes from 5.005_58 
  152.    * Fixed a bug in R_IBEFORE & R_IAFTER procesing in Berkeley DB
  153.      2 databases.
  154.    * Added some of the examples in the POD into the test harness.
  155. 1.69 3rd August 1999
  156.    * fixed a bug in push -- DB_APPEND wasn't working properly.
  157.    * Fixed the R_SETCURSOR bug introduced in 1.68
  158.    * Added a new Perl variable $DB_File::db_ver
  159.    
  160. 1.70 4th August 1999
  161.    * Initialise $DB_File::db_ver and $DB_File::db_version with
  162.      GV_ADD|GV_ADDMULT -- bug spotted by Nick Ing-Simmons.
  163.    * Added a BOOT check to test for equivalent versions of db.h &
  164.      libdb.a/so.
  165. 1.71 7th September 1999
  166.    * Fixed a bug that prevented 1.70 from compiling under win32
  167.    * Updated to support Berkeley DB 3.x
  168.    * Updated dbinfo for Berkeley DB 3.x file formats.
  169. 1.72 16th January 2000
  170.    * Added hints/sco.pl
  171.    * The module will now use XSLoader when it is available. When it
  172.      isn't it will use DynaLoader.
  173.    * The locking section in DB_File.pm has been discredited. Many thanks
  174.      to David Harris for spotting the underlying problem, contributing
  175.      the updates to the documentation and writing DB_File::Lock (available
  176.      on CPAN).
  177. 1.73 31st May 2000
  178.    * Added support in version.c for building with threaded Perl.
  179.    * Berkeley DB 3.1 has reenabled support for null keys. The test
  180.      harness has been updated to reflect this.
  181. 1.74 10th December 2000
  182.    * A "close" call in DB_File.xs needed parenthesised to stop win32 from
  183.      thinking it was one of its macros.
  184.    * Updated dbinfo to support Berkeley DB 3.1 file format changes.
  185.    * DB_File.pm & the test hasness now use the warnings pragma (when
  186.      available).
  187.    * Included Perl core patch 7703 -- size argument for hash_cb is different
  188.      for Berkeley DB 3.x
  189.    * Included Perl core patch 7801 -- Give __getBerkeleyDBInfo the ANSI C
  190.      treatment.
  191.    * @a = () produced the warning 'Argument "" isn't numeric in entersub'
  192.      This has been fixed. Thanks to Edward Avis for spotting this bug.
  193.    * Added note about building under Linux. Included patches.
  194.    * Included Perl core patch 8068 -- fix for bug 20001013.009 
  195.      When run with warnings enabled "$hash{XX} = undef " produced an
  196.      "Uninitialized value" warning. This has been fixed.
  197. 1.75 17th December 2000
  198.    * Fixed perl core patch 7703
  199.    * Added suppport to allow DB_File to be built with Berkeley DB 3.2 --
  200.      btree_compare, btree_prefix and hash_cb needed to be changed.
  201.    * Updated dbinfo to support Berkeley DB 3.2 file format changes.
  202. 1.76 15th January 2001
  203.    * Added instructions for using LD_PRELOAD to get Berkeley DB 2.x to work
  204.      with DB_File on Linux. Thanks to Norbert Bollow for sending details of
  205.      this approach.