Changes
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:3k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. #-------------------------------------------------------
  2. #
  3. # $Id: Changes,v 1.8 1998/09/27 19:12:20 mergl Exp $
  4. #
  5. # Copyright (c) 1997, 1998  Edmund Mergl
  6. #
  7. #-------------------------------------------------------
  8. Revision history for Perl extension Pg.
  9. 1.8.0   Sep 27 1998
  10. - adapted to PostgreSQL-6.4:
  11.   added support for 
  12.   o PQsetdbLogin
  13.   o PQpass
  14.   o PQsocket
  15.   o PQbackendPID
  16.   o PQsendQuery
  17.   o PQgetResult
  18.   o PQisBusy
  19.   o PQconsumeInput
  20.   o PQrequestCancel
  21.   o PQgetlineAsync
  22.   o PQputnbytes
  23.   o PQmakeEmptyPGresult
  24.   o PQbinaryTuples
  25.   o PQfmod
  26. - fixed conndefaults()
  27. - fixed lo_read
  28. 1.7.4   May 28 1998
  29. - applied patches from 
  30.   Brook Milligan <brook@trillium.NMSU.Edu>:
  31.   o changed Makefile.PL to look for include files
  32.     and libs in the source tree, except when the
  33.     environment variable POSTGRES_HOME is set.
  34.   o bug-fix in test.pl
  35. 1.7.3   Mar 28 1998
  36. - linking again with the shared version of libpq 
  37.   due to problems on several operating systems.
  38. 1.7.2   Mar 06 1998
  39. - module is now linked with static libpq.a
  40. 1.7.1   Mar 03 1998
  41. - expanded the search path for include files
  42. - return to UNIX domain sockets in test-scripts
  43. 1.7.0   Feb 20 1998
  44. - adapted to PostgreSQL-6.3:
  45.   add host=localhost to the conninfo-string
  46.   of test.pl and example-scripts
  47. - connectdb() converts dbname to lower case,
  48.   unless it is surrounded by double quotes
  49. - added new method fetchrow, now you can do:
  50.   while (@row = $result->fetchrow)
  51. 1.6.3   Sep 25 1997
  52. - README update
  53. 1.6.2   Sep 20 1997
  54. - adapted to PostgreSQL-6.2:
  55.           o added support for new method cmdTuples
  56.           o cmdStatus returns now for DELETE the status 
  57.             followed by the number of affected rows,
  58. - test.pl.newstyle renamed to eg/example.newstyle
  59. - test.pl.oldstyle renamed to eg/example.oldstyle
  60. - example script ApachePg.pl now uses 
  61.   $result->print with HTML option
  62. - Makefile looks for $ENV{POSTGRES_HOME} instead of 
  63.   $ENV{POSTGRESHOME} 
  64. 1.6.1  Jun 02 1997
  65. - renamed to pgsql_perl5
  66. - adapted to PostgreSQL-6.1
  67. - test only functions, which are also
  68.   tested in pgsql regression tests
  69. 1.5.4  Feb 12, 1997
  70.         - changed test.pl for large objects:
  71.           test only lo_import and lo_export
  72. 1.5.3  Jan  2, 1997
  73. - adapted to PostgreSQL-6.0
  74.         - new functions PQconnectdb, PQuser
  75.         - changed name of method 'new' to 'setdb'
  76. 1.4.2  Nov 21, 1996
  77. - added a more Perl-like syntax
  78. 1.3.2  Nov 11, 1996
  79.         - adapted to Postgres95-1.09
  80. - test.pl adapted to postgres95-1.0.9:
  81.   PQputline expects now '.' as last input
  82.   and PQgetline outputs '.' as last line.
  83. 1.3.1 Oct 22, 1996
  84.         - adapted to Postgres95-1.08
  85. - large-object interface added, thanks to
  86.   Sven Verdoolaege (skimo@breughel.ufsia.ac.be)
  87. - PQgetline() changed. This breaks old scripts !
  88. - PQexec now returns in any case a valid pointer.
  89.   This fixes the annoying message: 
  90.   'res is not of type PGresultPtr at ...'
  91. - testsuite completely rewritten, contains
  92.   now examples for almost all functions
  93. - resturn codes are now available as constants (PGRES_xxx)
  94. - PQnotifies() works now
  95. - enhanced doQuery()
  96. 1.2.0 Oct 15, 1995
  97.         - adapted to Postgres95-1.0
  98. - README updated
  99. - doQuery() in Pg.pm now returns 0 upon success
  100. - testlibpq.pl: added test for PQgetline()
  101. 1.1.1 Aug  5, 95
  102. - adapted to postgres95-beta0.03
  103. - Note: the libpq interface has changed completely !
  104. 1.1   Jun  6, 1995
  105. - Bug fix in PQgetline.
  106. 1.0   Mar 24, 1995
  107. - creation